Files
StackChan/app/android/gradle.properties
T
2026-04-27 12:16:53 +08:00

14 lines
650 B
Properties
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 原有JVM和AndroidX配置(保留不变)
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
# 新增的代理配置(127.0.0.1:7897
# HTTP代理
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=7897
# HTTPS代理(必须配置,Android依赖多为HTTPS
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=7897
# 可选:无需走代理的地址(本地/内网地址,按需调整)
systemProp.http.nonProxyHosts=localhost,127.0.0.1,192.168.*,*.local
systemProp.https.nonProxyHosts=localhost,127.0.0.1,192.168.*,*.local