Skip to content

Commit

Permalink
Update to agp 8.4.1, gradle 8.6 (#278)
Browse files Browse the repository at this point in the history
* Update to agp 8.4.1, gradle 8.6

* Fix broken build by hilt

* Change minifyEnabled to false for library modules
  • Loading branch information
fornewid committed May 29, 2024
1 parent 714ea67 commit ecbb687
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {
}
buildTypes {
release {
isMinifyEnabled = true
isMinifyEnabled = false
consumerProguardFiles("proguard-rules.pro")
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]

# Android
androidGradlePlugin = "8.3.2"
androidGradlePlugin = "8.4.1"

# Kotlin
kotlin = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat May 18 19:55:32 KST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit ecbb687

Please sign in to comment.