15 lines
427 B
Properties
15 lines
427 B
Properties
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||
android.useAndroidX=true
|
||
|
||
# 禁用 JDK Image Transform(解决 jlink 问题)
|
||
android.enableJdkImageTransform=false
|
||
|
||
# 网络超时设置
|
||
systemProp.http.connectionTimeout=60000
|
||
systemProp.http.socketTimeout=60000
|
||
systemProp.https.connectionTimeout=60000
|
||
systemProp.https.socketTimeout=60000
|
||
|
||
# 启用配置缓存
|
||
org.gradle.configuration-cache=true
|
||
org.gradle.parallel=true |