Rejecting class because it failed compile-time verification Android

后端 未结 5 716
北海茫月
北海茫月 2020-12-11 03:25

One of my application suddenly fails on startup, with the following error message :

java.lang.VerifyError: Rejecting class com.sample.BufferManager

相关标签:
5条回答
  • 2020-12-11 03:58

    The issue is due to having a synchronized block inside a try-catch block, for example :

    try {
        synchronized (mLock) {
            updateState();
        }
    } catch (IllegalStateException e) {
    }
    

    Apparently this is not a good practice, but as soon as I change it like this it works :

    synchronized(mLock) {
        try {
            updateState();
        } catch (IllegalStateException e) {
        }
    }
    
    0 讨论(0)
  • 2020-12-11 04:04

    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.....

    0 讨论(0)
  • 2020-12-11 04:04

    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:

    androidTestCompile "com.crittercism.dexmaker:dexmaker:1.4"
    androidTestCompile "com.crittercism.dexmaker:dexmaker-dx:1.4"
    androidTestCompile "com.crittercism.dexmaker:dexmaker-mockito:1.4"
    

    This works for me with Mockito 1.10.15 and 1.10.19.

    0 讨论(0)
  • 2020-12-11 04:08

    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 .

     Thread Thread = new Thread(new Runnable() {
    
            @Override
            public void run() {
                // TODO Auto-generated method stub
                handler.post(new Runnable() {
    
                    @Override
                    public void run() {
                        use this if your codes will change the Ui
    

    . . . . .

    0 讨论(0)
  • 2020-12-11 04:09

    If you are building with Jack, make sure it's turned off from build.gradle

    defaultConfig {
        ...
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    
        jackOptions {
            enabled false
        }
    }
    
    0 讨论(0)
提交回复
热议问题