Clean up gradle deprecation warnings
This commit is contained in:
parent
2ac53c604c
commit
399feec434
|
@ -5,6 +5,11 @@ import org.jetbrains.kotlin.konan.properties.Properties
|
|||
plugins {
|
||||
alias(libs.plugins.android)
|
||||
alias(libs.plugins.kotlinAndroid)
|
||||
base
|
||||
}
|
||||
|
||||
base {
|
||||
archivesName.set("thank-you")
|
||||
}
|
||||
|
||||
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
|
||||
|
@ -22,7 +27,6 @@ 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", "thank-you")
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.simplemobiletools.thankyou"
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-permission
|
||||
|
|
|
@ -4,7 +4,7 @@ kotlin = "1.9.0"
|
|||
#Simple tools
|
||||
simple-commons = "de113ad025"
|
||||
#Gradle
|
||||
gradlePlugins-agp = "8.1.0"
|
||||
gradlePlugins-agp = "8.1.1"
|
||||
app-build-compileSDKVersion = "34"
|
||||
app-build-targetSDK = "34"
|
||||
app-build-minimumSDK = "23"
|
||||
|
|
Loading…
Reference in New Issue