# --enable-native-access=ALL-UNNAMED silences the JDK 22+ "restricted method in # java.lang.System has been called" warning that Gradle 9.1's bundled # native-platform jar trips via System.load(). Same opt-in Minstrel needs on the # same Gradle/JDK pair; future JDKs promote the warning to an error. org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 --enable-native-access=ALL-UNNAMED org.gradle.parallel=true org.gradle.caching=true org.gradle.configuration-cache=true android.useAndroidX=true android.nonTransitiveRClass=true # Matches Minstrel: detekt 2.0-alpha and the ktlint Gradle plugin still have # intermittent configuration-cache holes. Warn rather than fail so the CC speedup # applies where it can. org.gradle.configuration-cache.problems=warn kotlin.code.style=official