2

MultiDex在我的应用程序中使用来支持超过 65k 的方法。在 api 21 上它运行良好,因为它进行了 predex 构建。在 api 21 下,我Application的堆栈跟踪崩溃了:

java.lang.VerifyError: mypackage/com/myapp/MyAppApplication
            at java.lang.Class.newInstanceImpl(Native Method)
            at java.lang.Class.newInstance(Class.java:1215)
            at android.app.Instrumentation.newApplication(Instrumentation.java:990)
            at android.app.Instrumentation.newApplication(Instrumentation.java:975)
            at android.app.LoadedApk.makeApplication(LoadedApk.java:502)
            at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4537)
            at android.app.ActivityThread.access$1500(ActivityThread.java:151)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1402)
            at android.os.Handler.dispatchMessage(Handler.java:110)
            at android.os.Looper.loop(Looper.java:193)
            at android.app.ActivityThread.main(ActivityThread.java:5322)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:515)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:829)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:645)
            at dalvik.system.NativeStart.main(Native Method)

这是我的gradle文件(简化),具有不同的风格,用于在调试中使用 predex 进行编译:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "mypackage.com.myapp"
        targetSdkVersion 22
        versionCode Integer.parseInt(new Date().format("yyMMddHH"))
        versionName "1.0"
        multiDexEnabled = true
    }

    productFlavors {
        normal {
            minSdkVersion 21
        }

        beta {
            minSdkVersion 16
            versionName "1.0.0_beta"
        }

        prod {
            minSdkVersion 16
        }
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }

    buildTypes {
        debug {
            minifyEnabled false
            debuggable true
        }
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:multidex:1.0.0'
}

这是我的Application

public class MyApplication extends CustomLibraryApplication {
    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        MultiDex.install(this);
    }
}

在我的清单下,<application>我有android:name=".MyApplication"

在这种情况下,诸如“排除某些 google play 服务”或“扩展 MultiDexApplication”之类的解决方案没有用处。

4

2 回答 2

3

解决了

问题是......鼓声...... buildToolsVersion

我将buildToolsVersiongradle 中的(仅buildToolsVersion)从(预览频道的最后一个)22.0.1更改为23 rc3api < 21 和 multidex。

于 2015-07-24T15:11:23.607 回答
1

另一个问题可能是当你使用一些库异常(对我来说是KeyPermanentlyInvalidated Exception)并且它只出现在 api <21。一旦我将其更改为 simple Exception,一切都很好。这对我很有帮助https://stackoverflow.com/a/16060251/12258664

于 2019-10-22T17:02:04.027 回答