当前位置:   article > 正文

报错:java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/View$OnUnhandledKeyEventListe_targetmethod error::java.lang.noclassdeffounderror

targetmethod error::java.lang.noclassdeffounderror: failed resolution of: lc

build.gradle里面用的api版本 是 28
但是,虚拟机选择的api等级是 27 ,然后项目里用了28的api,所以报错。
虚拟机改用28的api或者将build.gradle里面用的api版本降到27就没错了
修改完成后,点击菜单栏的Build,clear一下再次Build,成功无错运行。

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 27   // 修改此处
    buildToolsVersion "29.0.1"
    defaultConfig {
        applicationId "com.example.poppy"
        minSdkVersion 16
        //noinspection OldTargetApi
        targetSdkVersion 27    // 修改此处
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:27.1.1'   // 修改此处
    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 "org.jetbrains.anko:anko:0.10.8"
    implementation 'com.android.support:support-vector-drawable:27.1.1'    // 有的话,修改此处
    implementation 'com.android.support:mediarouter-v7:27.1.1'   // 有的话,修改此处
    implementation 'com.android.support:support-v4:27.1.1'   // 有的话,修改此处
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

修改完成后,点击菜单栏的Build,clear一下再次Build,成功无错运行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/915097
推荐阅读
相关标签
  

闽ICP备14008679号