我正在尝试在我的应用程序中集成admob广告,但我收到此错误。
"找不到以下类: - com.google.ads.AdView"
主XML布局代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/background" >
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="My_Add_Id"
ads:loadAdOnCreate="true" />
Mainifest文件如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.solutionproviders.bajiascooking"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-sdk android:targetSdkVersion="16"
android:minSdkVersion="9"/>
<application
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Main"
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.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
</manifest>
我正在使用Google Play服务添加广告。
我检查了Stakeoverflow上提供的所有解决方案,但没有一个对我有用。请建议我一个解决方案。将提供任何其他信息,但我想我已经提供了足够的信息来解决问题。
答案 0 :(得分:0)
由于您使用的是 Google Play服务,因此必须更改
com.google.ads.AdView
到
com.google.android.gms.ads.AdView
请勿使用AdMob SDK - 自8月1日起不推荐使用此版本。如果您使用此过时的SDK,则无法在Play商店中发布* .apk。 Admob现在是Google Play服务的一部分,并且必须使用此服务。请阅读Docs (Google Mobile Ads SDK)。
中的更多内容答案 1 :(得分:0)
只需按照以下3个步骤操作:
依赖性:
implementation 'com.google.android.gms:play-services-ads:11.8.0'