Created
August 3, 2026 09:09
-
-
Save chaosddp/3dfdeb86bc15d95789cb298fc9eb2a45 to your computer and use it in GitHub Desktop.
当使用flet构建android包的时候,gradle下载依赖时需要翻墙,可以在‘build/flutter/android/gradle.properties’中添加代理完成构建。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| systemProp.http.proxyHost=PROXY_SERVER | |
| systemProp.http.proxyPort=PROXY_PORT | |
| systemProp.https.proxyHost=PROXY_SERVER | |
| systemProp.https.proxyPort=PROXY_PORT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment