Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 451 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 451 Bytes

柒的神奇宝贝百科

自用工具,有需要自取

安卓开发

  • 清空缓存
cd android

gradlew clean
  • 打包
cd android

./gradlew assembleRelease
  • 构建时如果下载包的速度很慢,自行修改android/gradle.properties中的代理配置,例如:
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=7890
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=7890