how to reduce android app size?

后端 未结 6 1374
野性不改
野性不改 2020-12-18 11:20

First of all , I am using android studio for development of android app. I have build an android app for OCR using tesseract library. The app is currently working great and

6条回答
  •  鱼传尺愫
    2020-12-18 11:58

    You can use APK splits to build smaller versions of your app that target individual device architectures. For an example of this, see the San Angeles demo project.

    You can get a further reduction by removing the libpngt.so/libjpgt.so files if your app doesn't need them.

    Using ProGuard may help too.

提交回复
热议问题