我的IDE是Android Studio 2.0。 SDK是23
这是我的错误日志(有很多相同的日志,我只列出一个):
05-10 22:19:21.430 1835-1835 / edu.jazzy.testconsumer E / dalvikvm:找不到类'android.os.PersistableBundle',引自方法edu.jazzy.testconsumer.MipcaActivityCapture.access $ super
我的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')
}
而且我不知道为什么在我google几个小时之后总会出现错误。
答案 0 :(得分:1)
只要您的应用中有代码引用设备上不存在的类/方法/字段,就会收到此类消息。只要你没有执行任何引用那些缺失项目的行,就没有问题。
请注意the question linked to from the comments适用于存在实际崩溃的情况,在这种情况下,由于Otto的一些不幸反映。您的问题中的错误消息并非崩溃。