Skip to content

Commit 480eb69

Browse files
committed
Clean up gradle deprecation warnings
1 parent 51b21a9 commit 480eb69

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
@@ -7,6 +7,11 @@ plugins {
77
alias(libs.plugins.kotlinAndroid)
88
alias(libs.plugins.ksp)
99
alias(libs.plugins.kotlinSerialization)
10+
base
11+
}
12+
13+
base {
14+
archivesName.set("notes")
1015
}
1116

1217
val keystorePropertiesFile: File = rootProject.file("keystore.properties")
@@ -24,7 +29,6 @@ android {
2429
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
2530
versionName = project.libs.versions.app.version.versionName.get()
2631
versionCode = project.libs.versions.app.version.versionCode.get().toInt()
27-
setProperty("archivesBaseName", "notes")
2832
ksp {
2933
arg("room.schemaLocation", "$projectDir/schemas")
3034
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.simplemobiletools.notes.pro"
43
android:installLocation="auto">
54

65
<uses-permission

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ room = "2.6.0-alpha02"
1212
#Simple tools
1313
simple-commons = "f97ebe8e18"
1414
#Gradle
15-
gradlePlugins-agp = "8.1.0"
15+
gradlePlugins-agp = "8.1.1"
1616
#build
1717
app-build-compileSDKVersion = "34"
1818
app-build-targetSDK = "34"

0 commit comments

Comments
 (0)