xref: /aosp_15_r20/external/robolectric/gradle.properties (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)
1thisVersion=4.14-SNAPSHOT
2
3# This project uses AndroidX instead of Support Libraries
4# https://developer.android.com/jetpack/androidx/migrate#migrate_an_existing_project_using_android_studio
5android.useAndroidX=true
6
7# Don't include Kotlin's standard library by default
8# https://kotlinlang.org/docs/gradle-configure-project.html#dependency-on-the-standard-library
9kotlin.stdlib.default.dependency=false
10
11# Enable Gradle's Build Cache
12# https://docs.gradle.org/current/userguide/performance.html#enable_the_build_cache
13org.gradle.caching=true
14
15# Increase Gradle's max memory due to OutOfMemoryException during compilation
16org.gradle.jvmargs=-Xmx2g
17
18# Give Kotlin's daemon 2g of memory
19kotlin.daemon.jvmargs=-Xmx2g
20