Clean up gradle deprecation warnings
This commit is contained in:
parent
e555cf699d
commit
2d14709169
3 changed files with 350 additions and 2 deletions
|
|
@ -8,6 +8,11 @@ plugins {
|
|||
alias(libs.plugins.kotlinSerialization)
|
||||
alias(libs.plugins.parcelize)
|
||||
alias(libs.plugins.ksp)
|
||||
base
|
||||
}
|
||||
|
||||
base {
|
||||
archivesName.set("sms-messenger")
|
||||
}
|
||||
|
||||
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
|
||||
|
|
@ -25,7 +30,9 @@ android {
|
|||
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", "sms-messenger")
|
||||
ksp {
|
||||
arg("room.schemaLocation", "$projectDir/schemas")
|
||||
}
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue