Skip to content

Commit

Permalink
Update gradle.properties
Browse files Browse the repository at this point in the history
- Enable caching
- Disable all `buildfeatures.*`
  • Loading branch information
Iamlooker committed Jul 4, 2024
1 parent 768d490 commit 1843836
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ class AndroidApplicationPlugin : Plugin<Project> {
versionCode = DefaultConfig.versionCode
versionName = DefaultConfig.versionName
}
buildFeatures {
aidl = false
renderScript = false
shaders = false
}
}
dependencies {
add("implementation", embeddedKotlin("stdlib"))
Expand Down
6 changes: 0 additions & 6 deletions build-logic/structure/src/main/kotlin/AndroidLibraryPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ class AndroidLibraryPlugin : Plugin<Project> {
isMinifyEnabled = false
}
}
buildFeatures {
aidl = false
renderScript = false
shaders = false
resValues = false
}
}
extensions.configure<LibraryAndroidComponentsExtension> {
beforeVariants {
Expand Down
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@ android.nonFinalResIds=true
android.enableJetifier=false
android.enableR8.fullMode=true
android.nonTransitiveRClass=true
org.gradle.caching=true
org.gradle.configuration-cache=true
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false

0 comments on commit 1843836

Please sign in to comment.