mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 00:57:02 +05:30
49 lines
1.5 KiB
Properties
49 lines
1.5 KiB
Properties
org.gradle.parallel=true
|
|
org.gradle.configureondemand=true
|
|
org.gradle.caching=true
|
|
|
|
# Enable filesystem watching
|
|
org.gradle.vfs.watch=true
|
|
|
|
# Enable Kotlin incremental compilation
|
|
kotlin.incremental=true
|
|
|
|
# Enable parallel tasks execution for Kotlin Gradle plugin
|
|
kotlin.parallel.tasks.in.project=true
|
|
|
|
# Kotlin code style
|
|
kotlin.code.style=official
|
|
|
|
# Turn off AP discovery in compile path to enable compile avoidance
|
|
kapt.include.compile.classpath=false
|
|
|
|
# Disable R8 full mode due to bugs with Jetpack Compose.
|
|
# android.enableR8.fullMode=true
|
|
|
|
# Enable AndroidX
|
|
android.useAndroidX=true
|
|
|
|
# Enable non-transitive R class namespacing where each library only contains
|
|
# references to the resources it declares instead of declarations plus all
|
|
# transitive dependency references.
|
|
android.nonTransitiveRClass=true
|
|
|
|
# Generate compile-time only R class for app modules.
|
|
android.enableAppCompileTimeRClass=true
|
|
|
|
# Experimental flags
|
|
android.keepWorkerActionServicesBetweenBuilds=true
|
|
android.nonFinalResIds=true
|
|
android.enableRTxtResourceShrinking=true
|
|
android.enablePartialRIncrementalBuilds=true
|
|
android.experimental.enableNewResourceShrinker=true
|
|
android.experimental.enableNewResourceShrinker.preciseShrinking=true
|
|
android.generateManifestClass=true
|
|
|
|
# Default Android build features
|
|
android.defaults.buildfeatures.buildconfig=false
|
|
android.defaults.buildfeatures.aidl=false
|
|
android.defaults.buildfeatures.renderscript=false
|
|
android.defaults.buildfeatures.resvalues=false
|
|
android.defaults.buildfeatures.shaders=false
|
|
android.library.defaults.buildfeatures.androidresources=false
|