当我使用目标API 24的AVD时一切正常。 何时使用针对API 19的AVD我会收到错误:
java.lang.RuntimeException: Unable to get provider com.google.firebase.provider.FirebaseInitProvider: java.lang.ClassNotFoundException: Didn't find class "com.google.firebase.provider.FirebaseInitProvider" on path: DexPathList[[zip file "/data/app/com.cabbytech.driverapphttp-2.apk"],nativeLibraryDirectories=[/data/app-lib/com.cabbytech.driverapphttp-2, /system/lib]]
这是我的gradle脚本:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.cabbytech.driverapphttp"
minSdkVersion 10
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso- core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.android.gms:play-services:10.0.1'
compile 'com.google.code.gson:gson:2.6.2'
testCompile 'junit:junit:4.12'
}
我认为这个gradle脚本存在问题,但我找不到任何解决方案。
答案 0 :(得分:2)
好的,我没有读过这个
https://developer.android.com/studio/build/multidex.html
我实施了这些步骤并且有效。在应用程序选项卡下的显示中:
<application
android:name="android.support.multidex.MultiDexApplication" >
...
</application>
并在gradle脚本中:
dependencies {
compile 'com.android.support:multidex:1.0.1'
}
答案 1 :(得分:0)
这是因为您使用了错误的虚拟设备映像。在创建虚拟设备时,您应该选择支持Google API的系统映像。
正确的系统图像位于下方的屏幕截图中。