且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法获取提供者com.google.android.gms.ads.MobileAdsInitProvider:java.lang.IllegalStateException

更新时间:2023-11-16 19:20:10

Google提供了Google广告的更新,因此,如果您在gradle中更新Admob库,则需要将其添加到清单中.

Google gave update for the Google ads so if you update your Admob library in gradle then you need to add this in your manifest.

<manifest>
   <application>
      <!-- TODO: Replace with your real AdMob app ID -->
      <meta-data
          android:name="com.google.android.gms.ads.APPLICATION_ID"
          android:value="ca-app-pub-################~##########"/>
  </application>
</manifest>