One of my application suddenly fails on startup, with the following error message :
java.lang.VerifyError: Rejecting class com.sample.BufferManagerImpl because it failed compile-time verification (declaration of 'com.sample.BufferManagerImpl' appears in /data/app/com.sample.myapp-1/base.apk)
It only fails on devices using the ART virtual machine, but not on Dalvik
i had this problem to with android 5. my app did correctly on 4 or below but on android 5 devices i had crash.
i broke my codes with multiple
Threads
and it fixed. if your code wants to change the UI use handler .. . . . .
If you are building with Jack, make sure it's turned off from build.gradle
The issue is due to having a
synchronized
block inside atry-catch
block, for example :Apparently this is not a good practice, but as soon as I change it like this it works :
in android studio 2.1 ,the instant run will cause this problem,just run after close the instant run function.
File -> Preferences > Build Execution -> Deployment -> Instant Run
Disable the first checkbox: Enable Instant Run to hot swap.....
This error also might happen due to usage of Mockito within an Android InstrumentationTest. If the error appears on mocking objects then you have to add this lines to you gradle-file:
This works for me with Mockito 1.10.15 and 1.10.19.