gradle.properties 444 B

12345678910111213
  1. # Automatically convert third-party libraries to use AndroidX
  2. android.useAndroidX=true
  3. # Kotlin code style for this project: "official" or "obsolete":
  4. android.enableJetifier=true
  5. kotlin.code.style=official
  6. #开启gradle并行编译,开启daemon,调整jvm内存大小
  7. org.gradle.daemon=true
  8. org.gradle.configureondemand=true
  9. org.gradle.parallel=true
  10. org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8