Skip to content

Commit ebb08d4

Browse files
committed
Clean up gradle deprecation warnings
1 parent 02b249e commit ebb08d4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ plugins {
66
alias(libs.plugins.android)
77
alias(libs.plugins.kotlinAndroid)
88
alias(libs.plugins.ksp)
9+
base
10+
}
11+
12+
base {
13+
archivesName.set("launcher")
914
}
1015

1116
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
@@ -23,7 +28,6 @@ android {
2328
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
2429
versionName = project.libs.versions.app.version.versionName.get()
2530
versionCode = project.libs.versions.app.version.versionCode.get().toInt()
26-
setProperty("archivesBaseName", "launcher")
2731
ksp {
2832
arg("room.schemaLocation", "$projectDir/schemas")
2933
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
4-
package="com.simplemobiletools.launcher"
54
android:installLocation="internalOnly">
65

76
<uses-permission

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ room = "2.6.0-alpha02"
88
#Simple tools
99
simple-commons = "c5a32fb1f3"
1010
#Gradle
11-
gradlePlugins-agp = "8.1.0"
11+
gradlePlugins-agp = "8.1.1"
1212
#build
1313
app-build-compileSDKVersion = "34"
1414
app-build-targetSDK = "33"

0 commit comments

Comments
 (0)