参考 https://www.tcdw.net/post/build-expo-app-android-without-eas
其中执行 ./gradlew 构建时指定代理如下, 否则安装巨慢
# 打包给 Google Play 商店用的 .aab 文件:
./gradlew bundleRelease -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=7897 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=7897
#直接安装的 .apk 文件
./gradlew assembleRelease -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=7897 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=7897