react-native-camera-kit
react-native-camera-kit copied to clipboard
I noted after Add Kotlin to project APK file have increase double size ? why ?
Describe the bug I follow this : https://github.com/teslamotors/react-native-camera-kit/blob/master/docs/kotlin.md ** OS** ANDROID
Look like this libs make the build apk file become larger. My previous apk has 30mb and after integrate this libs this one has more than 100mb.
In my case,
The issues happened when I increased minSdkVersion from 21 to 23.
I'm able to reduce APK size a little by adding android:extractNativeLibs="true" to AndroidManifest.xml
maybe can use below method directly
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}