minSdkVersion 8不能小于库中声明的版本9 - 发布AdMob

时间:2016-03-15 13:40:39

标签: android android-studio libgdx admob google-play-services

我已经添加了使用Android Studio在我的项目中输入admob类的功能。:

enter image description here

问题在于,既然我添加了这个选项,我就会陷入冲突sdk credo ..non非常方便Android抱歉。

enter image description here

我该如何解决这个问题?然后我应该提出一个插页式广告:

  

InterstitialAd interstitialAd;

清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mygame.game.android"
android:versionCode="1"
android:versionName="1" >

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="22" />
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/GdxTheme" >
    <activity
        android:name="com.mygame.game.android.AndroidLauncher"
        android:label="@string/app_name" 
        android:screenOrientation="landscape"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize">

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

错误:

  

错误:(7,5)使用-sdk:minSdkVersion 8不能小于版本9   在库C:\ Users \ myuser \ Documents \ my中声明   游戏\机器人\编译\ \中间体爆炸-AAR \ com.google.android.gms \播放服务的广告\ 8.4.0 \ AndroidManifest.xml中

     

错误:任务执行失败&#39;:android:processDebugManifest&#39;。

     
    

清单合并失败:uses-sdk:minSdkVersion 8不能小于库中声明的版本9     C:\ Users \用户为myuser \文档\ mygame \机器人\编译\ \中间体爆炸-AAR \ com.google.android.gms \播放服务的广告\ 8.4.0 \ AndroidManifest.xml中       建议:使用工具:overrideLibrary =&#34; com.google.android.gms.ads&#34;至     强制使用

  

如何解决???

1 个答案:

答案 0 :(得分:1)

此错误告诉您play-services-ads库(也称为AdMob)支持的最小SDK为9,但您的应用程序正在尝试声明最小SDK为8。

由于该库仅支持版本9,因此您的应用程序无法支持早于此版本的任何内容。

  

如何解决???

停止支持Android版本8(which currently accounts for just .1% of users globally),或删除广告库。