我的IDE是Android Studio 2.0。 SDK是23
這是我的錯誤日誌(有這麼多相同的日誌,我只列出一個):找不到類'android.os.PersistableBundle'
05-10 22:19:21.430 1835年至1835年/ edu.jazzy.testconsumer E/dalvikvm :找不到類 'android.os.PersistableBundle',從法edu.jazzy.testconsumer.MipcaActivityCapture.access $超級
我的build.gradle引用:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "edu.jazzy.testconsumer"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile files('libs/zxing.jar')
}
而且我不知道爲什麼總是會出現錯誤,我爲谷歌後h我們的。
你看看這個答案嗎? http://stackoverflow.com/questions/28857860/classnotfoundexception-didnt-find-class-android-os-persistablebundle-otto-an – cristianorbs
@cristianorbs我已經檢查過,這個問題是第一次,當我谷歌。 – Joe