找不到类“ dalvik.system ....”

时间:2019-01-07 12:00:52

标签: java android

我正在运行4.4.4版中的一个android应用程序,加载应用程序后,我无法点击任何按钮,而在logcat中,这是一个错误:


    E/dalvikvm: Could not find class 'dalvik.system.DelegateLastClassLoader', referenced from method ab.b

这是我的gradle文件:


    apply plugin: 'com.android.application'
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.app.name"
            minSdkVersion 14
            targetSdkVersion 28
            versionCode 105
            versionName "1.0.5"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
        lintOptions {
            checkReleaseBuilds false
        }
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:28.0.0'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
        implementation 'com.google.android.gms:play-services-ads:17.1.2'
    }

在更高的android版本中,一切正常。请帮助)

1 个答案:

答案 0 :(得分:0)

将您的compile sdk versiontarget version减少到26

并更改appcompat-v7    到以下

com.android.support:appcompat-v7:26.0.0-beta1

然后检查运行它。