APK size is bigger than expected - android studio

后端 未结 3 2149
温柔的废话
温柔的废话 2021-02-19 02:55

My project content size like this,

  1. Main Project (Source & asset size 513KB)
  2. Module 1 (Source & asset size 135KB)
  3. Module 2 (Source & a
3条回答
  •  深忆病人
    2021-02-19 03:25

    In case of a large png files existed try to enable the AAPT and use the next:

    android {
        …
        buildTypes {
            release {
                crunchPngs true // or false
            }
        }
    }
    

提交回复
热议问题