-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate to gradle kts and version catalog
- Loading branch information
1 parent
c5b7837
commit 3959383
Showing
7 changed files
with
150 additions
and
116 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | ||
import org.jetbrains.kotlin.konan.properties.Properties | ||
import java.io.FileInputStream | ||
|
||
plugins { | ||
alias(libs.plugins.android) | ||
alias(libs.plugins.kotlinAndroid) | ||
alias(libs.plugins.kotlinSerialization) | ||
} | ||
|
||
val keystorePropertiesFile: File = rootProject.file("keystore.properties") | ||
val keystoreProperties = Properties() | ||
if (keystorePropertiesFile.exists()) { | ||
keystoreProperties.load(FileInputStream(keystorePropertiesFile)) | ||
} | ||
|
||
android { | ||
compileSdk = project.libs.versions.app.build.compileSDKVersion.get().toInt() | ||
|
||
defaultConfig { | ||
applicationId = libs.versions.app.version.appId.get() | ||
minSdk = project.libs.versions.app.build.minimumSDK.get().toInt() | ||
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt() | ||
versionName = project.libs.versions.app.version.versionName.get() | ||
versionCode = project.libs.versions.app.version.versionCode.get().toInt() | ||
setProperty("archivesBaseName", "dialer") | ||
} | ||
|
||
signingConfigs { | ||
if (keystorePropertiesFile.exists()) { | ||
register("release") { | ||
keyAlias = keystoreProperties.getProperty("keyAlias") | ||
keyPassword = keystoreProperties.getProperty("keyPassword") | ||
storeFile = file(keystoreProperties.getProperty("storeFile")) | ||
storePassword = keystoreProperties.getProperty("storePassword") | ||
} | ||
} | ||
} | ||
|
||
buildFeatures { | ||
viewBinding = true | ||
buildConfig = true | ||
} | ||
|
||
buildTypes { | ||
debug { | ||
applicationIdSuffix = ".debug" | ||
} | ||
release { | ||
isMinifyEnabled = true | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android-optimize.txt"), | ||
"proguard-rules.pro" | ||
) | ||
if (keystorePropertiesFile.exists()) { | ||
signingConfig = signingConfigs.getByName("release") | ||
} | ||
} | ||
} | ||
|
||
flavorDimensions.add("variants") | ||
productFlavors { | ||
register("core") | ||
register("fdroid") | ||
register("prepaid") | ||
} | ||
|
||
sourceSets { | ||
getByName("main").java.srcDirs("src/main/kotlin") | ||
} | ||
|
||
compileOptions { | ||
val currentJavaVersionFromLibs = JavaVersion.valueOf(libs.versions.app.build.javaVersion.get().toString()) | ||
sourceCompatibility = currentJavaVersionFromLibs | ||
targetCompatibility = currentJavaVersionFromLibs | ||
} | ||
|
||
tasks.withType<KotlinCompile> { | ||
kotlinOptions.jvmTarget = project.libs.versions.app.build.kotlinJVMTarget.get() | ||
} | ||
|
||
namespace = libs.versions.app.version.appId.get() | ||
|
||
lint { | ||
checkReleaseBuilds = false | ||
abortOnError = false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(libs.simple.tools.commons) | ||
implementation(libs.indicator.fast.scroll) | ||
implementation(libs.autofit.text.view) | ||
implementation(libs.kotlinx.serialization.json) | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
plugins { | ||
alias(libs.plugins.android).apply(false) | ||
alias(libs.plugins.kotlinAndroid).apply(false) | ||
alias(libs.plugins.kotlinSerialization).apply(false) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[versions] | ||
#jetbrains | ||
kotlin = "1.9.0" | ||
kotlinxSerializationJson = "1.5.1" | ||
#Simple tools | ||
simple-commons = "565200547d" | ||
#Gradle | ||
gradlePlugins-agp = "8.1.0" | ||
#Other | ||
indicatorFastScroll = "4524cd0b61" | ||
autofitTextView = "0.2.1" | ||
#build | ||
app-build-compileSDKVersion = "34" | ||
app-build-targetSDK = "34" | ||
app-build-minimumSDK = "23" | ||
app-build-javaVersion = "VERSION_17" | ||
app-build-kotlinJVMTarget = "17" | ||
#versioning | ||
app-version-appId = "com.simplemobiletools.dialer" | ||
app-version-versionCode = "56" | ||
app-version-versionName = "5.18.0" | ||
[libraries] | ||
#Simple Mobile Tools | ||
simple-tools-commons = { module = "com.github.SimpleMobileTools:Simple-Commons", version.ref = "simple-commons" } | ||
#Kotlin | ||
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" } | ||
#Other | ||
indicator-fast-scroll = { module = "com.github.tibbi:IndicatorFastScroll", version.ref = "indicatorFastScroll" } | ||
autofit-text-view = { module = "me.grantland:autofittextview", version.ref = "autofitTextView" } | ||
[plugins] | ||
android = { id = "com.android.application", version.ref = "gradlePlugins-agp" } | ||
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
rootProject.name = "Simple-Dialer" | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven { setUrl("https://jitpack.io") } | ||
} | ||
} | ||
include(":app") |