java.lang.VerifyError: com/facebook/i/k at SoLoader.initImpl$230dc011(SoLoader.java:203)
See original GitHub issueDescription
I posted the exact same issue to Fresco (https://github.com/facebook/fresco/issues/2039), but I believe that it’s actually for you.
Crash is happening on Android 4.x devices, when APK is built with ProGuard enabled and ‘proguard-android-optimize.txt’ configuration file.
Reproduction
- Get an Android 4.x device
- Build an app with following build settings (“-optimize” is the important part):
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro', 'proguard-fresco.pro'
}
- BOOM!
You can find all the detailed information and system dumps here: http://crashes.to/s/c450feed2e9
Additional Information
- Fresco version: 1.8.0
- Platform version: Android 4.x.
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (1 by maintainers)
Top Results From Across the Web
Getting error while using react native component on Android ...
While trying to init the react native component in Android app getting this error on Android os version 4.4.2 and 4.2.2. Fatal Exception:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@fenglu09 I noticed that the issue arose when I enabled multidex for a device with android sdk version 17 (Android 4.2). To resolve the issue, I followed steps here:
https://developer.android.com/studio/build/multidex#java
implementation 'com.android.support:multidex:1.0.3'
to dependencies in app/build.gradleAdding these rules has resolved the issue for me