在我当前的项目中,我使用 OpenCV 作为主要库来进行图像处理,在构建捆绑调试程序以检查ABB的大小时,我发现它非常庞大(< strong> 50MB )。
在How to Generate and Extract APK Files from Android App Bundle (AAB)的这篇文章之后,我得到了:
我的问题
如果我使用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
}
}
com.github.iamareebjamal:opencv-android:4.1.2