1
當我想開始我的設備上我的應用程序
,應用程序崩潰,我得到這個錯誤:錯誤AdMob的整合應用的Android(應用程序崩潰)
android.view.InflateException: Binary XML file line #9: Error inflating class com.google.ads.AdView
我已經與提出的解決方案嘗試在stackoverflow但它不適用這個錯誤。
文件的build.gradle(包括依賴)
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:16'
buildToolsVersion '21.1.2'
defaultConfig {
applicationId "com.recipes.app"
minSdkVersion 9
targetSdkVersion 9
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_5
targetCompatibility JavaVersion.VERSION_1_5
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-ads:8.3.0'
}