-6ren"> -我正在尝试将 AdMob 添加到我的应用程序中,但出现了此错误,我不确定如何修复它。 -6ren">
gpt4 book ai didi

Android Studio AdMob 错误无法解析符号@integer/google_play_services_version"/>

转载 作者:太空宇宙 更新时间:2023-11-03 13:19:35 24 4
gpt4 key购买 nike

我正在尝试将 AdMob 添加到我的应用程序中,但出现了此错误,我不确定如何修复它。

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>

<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android.configChanges="keyboard|keyboardHidden|
orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>"
<activity android:name="com.google.android.gms.ads.AdActivity"

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout
|uiMode|screenSize|smallestScreenSize" />”
<activity android:name=".SettingsPage"
android:label="Settings"
android:theme="@style/AppTheme"/>
</application>

另外,行

    <activity android:name="com.google.android.gms.ads.AdActivity"

有一个错误说无法解析符号 AdActivity。我不确定是什么导致了这些问题,希望得到一些帮助。

构建.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.example.name.application"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), '
proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
}

最佳答案

您需要在 build.gradle 中添加一行来编译 Google Play 服务,查看文档 here

因此,如果您使用的是最新版本的 Google Play 服务,那么您的依赖项应该是这样的:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.google.android.gms:play-services:7.5.0'
}

关于Android Studio AdMob 错误无法解析符号@integer/google_play_services_version"/>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30519431/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com