Clean up gradle deprecation warnings
This commit is contained in:
parent
02b249e5a8
commit
ebb08d420c
|
@ -6,6 +6,11 @@ plugins {
|
||||||
alias(libs.plugins.android)
|
alias(libs.plugins.android)
|
||||||
alias(libs.plugins.kotlinAndroid)
|
alias(libs.plugins.kotlinAndroid)
|
||||||
alias(libs.plugins.ksp)
|
alias(libs.plugins.ksp)
|
||||||
|
base
|
||||||
|
}
|
||||||
|
|
||||||
|
base {
|
||||||
|
archivesName.set("launcher")
|
||||||
}
|
}
|
||||||
|
|
||||||
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
|
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
|
||||||
|
@ -23,7 +28,6 @@ android {
|
||||||
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
|
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
|
||||||
versionName = project.libs.versions.app.version.versionName.get()
|
versionName = project.libs.versions.app.version.versionName.get()
|
||||||
versionCode = project.libs.versions.app.version.versionCode.get().toInt()
|
versionCode = project.libs.versions.app.version.versionCode.get().toInt()
|
||||||
setProperty("archivesBaseName", "launcher")
|
|
||||||
ksp {
|
ksp {
|
||||||
arg("room.schemaLocation", "$projectDir/schemas")
|
arg("room.schemaLocation", "$projectDir/schemas")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="com.simplemobiletools.launcher"
|
|
||||||
android:installLocation="internalOnly">
|
android:installLocation="internalOnly">
|
||||||
|
|
||||||
<uses-permission
|
<uses-permission
|
||||||
|
|
|
@ -8,7 +8,7 @@ room = "2.6.0-alpha02"
|
||||||
#Simple tools
|
#Simple tools
|
||||||
simple-commons = "c5a32fb1f3"
|
simple-commons = "c5a32fb1f3"
|
||||||
#Gradle
|
#Gradle
|
||||||
gradlePlugins-agp = "8.1.0"
|
gradlePlugins-agp = "8.1.1"
|
||||||
#build
|
#build
|
||||||
app-build-compileSDKVersion = "34"
|
app-build-compileSDKVersion = "34"
|
||||||
app-build-targetSDK = "33"
|
app-build-targetSDK = "33"
|
||||||
|
|
Loading…
Reference in New Issue