Skip to content

Commit 18c1347

Browse files
committed
Update to AGP 9.0
1 parent 0bbc736 commit 18c1347

File tree

17 files changed

+240
-226
lines changed

17 files changed

+240
-226
lines changed

app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Gradle
44
.gradle
55
.kotlin
6+
build
67
/local.properties
7-
/build

app/apk/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/apk/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
plugins {
22
id("com.android.application")
3-
kotlin("android")
43
kotlin("plugin.parcelize")
5-
kotlin("kapt")
4+
id("com.android.legacy-kapt")
65
id("androidx.navigation.safeargs.kotlin")
76
}
87

@@ -26,6 +25,10 @@ android {
2625
isCoreLibraryDesugaringEnabled = true
2726
}
2827

28+
defaultConfig {
29+
proguardFile("proguard-rules.pro")
30+
}
31+
2932
buildTypes {
3033
release {
3134
isMinifyEnabled = true

app/apk/proguard-rules.pro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Excessive obfuscation
2+
-flattenpackagehierarchy
3+
-allowaccessmodification

app/buildSrc/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/buildSrc/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
2-
31
plugins {
42
`kotlin-dsl`
53
}
@@ -21,6 +19,7 @@ gradlePlugin {
2119
dependencies {
2220
implementation(kotlin("gradle-plugin", libs.versions.kotlin.get()))
2321
implementation(libs.android.gradle.plugin)
22+
implementation(libs.android.kapt.plugin)
2423
implementation(libs.ksp.plugin)
2524
implementation(libs.navigation.safe.args.plugin)
2625
implementation(libs.lsparanoid.plugin)

0 commit comments

Comments
 (0)