1
我從19我的minSdkVersion更新爲21,當我嘗試運行我的應用程序現在崩潰。我得到「Java.lang.ClassNotFoundException:沒有找到類android.support.v4.widget.DrawerLayout」任何想法如何解決這個問題?抽屜佈局類未找到錯誤
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.id"
minSdkVersion 21
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
repositories {
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:19.1.0'
}
請嘗試從19.1.0更新到com.android.support:support-compat:24.2.0之類的其他東西,並讓我們知道在清理項目 – Tudor
@ PopTudor後它是否實現了訣竅 - 它不起作用。我加入com.android.support:support-compat:24.2.0,現在我的主要活動得到了「廣東話解析符號‘DrawerLayout’ – amanda45
試試這個編譯‘com.android.support:support-v4:22.2.1’ – Tudor