How to reduce and compress an apk file in android

前端 未结 4 649
没有蜡笔的小新
没有蜡笔的小新 2020-12-28 21:06

I have one apk file but its file size is 22.4 MB. It\'s huge, so I need to reduce or compress the apk file in android. What is the right way to reduce and compress the apk f

4条回答
  •  执念已碎
    2020-12-28 21:49

    1. Use .svg format icon set.
    2. Compress PNGs.
    3. Use only specific libraries of Google Play Services.
    4. Use Proguard

      build.gradle

      android {
          ...
          buildTypes {
              release {
                  minifyEnabled true
                  proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
              }
          }
      }
      
    5. Shrink Resources

      build.gradle

      android {
          ...
          buildTypes {
              release {
                  shrinkResources true
                  minifyEnabled true
                  ...
              }
          }
      }
      

提交回复
热议问题