如果我使用的是OpenCV库,如何减小APK的大小

时间:2019-12-17 21:16:58

标签: android opencv apk android-app-bundle

在我当前的项目中,我使用 OpenCV 作为主要库来进行图像处理,在构建捆绑调试程序以检查ABB的大小时,我发现它非常庞大(< strong> 50MB )。

How to Generate and Extract APK Files from Android App Bundle (AAB)的这篇文章之后,我得到了:

enter image description here

我的问题

如果我使用OpenCV library,如何减小APK的大小,我知道有一种方法,例如,删除未使用的 .SO 文件, Google Play使用 OpenCV库,它们的大小未达到 10MB

成绩文件:

android {
    compileSdkVersion 29
    dexOptions {
        preDexLibraries = false
        javaMaxHeapSize "4g"
    }
    defaultConfig {
        applicationId "maa.abc"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
  1. OpenCV库版本: 4.1.2
  2. 用于获取OpenCV的库:com.github.iamareebjamal:opencv-android:4.1.2

0 个答案:

没有答案