当前位置: 首页 > 知识库问答 >
问题:

Admob根本不工作:找不到Google Play services资源。请检查您的项目配置

隆飞宇
2023-03-14

这是否意味着如果我提交了我的应用程序,admob将在提交后工作正常?如果没有,这里是我的admob代码,我如何修复这个问题?

private AdView adView;
adView = new AdView(this);
        adView.setAdSize(AdSize.BANNER);
        adView.setAdUnitId("My App Ad Unit ID");

        // Add the AdView to the view hierarchy. The view will have no size
        // until the ad is loaded.
        LinearLayout layout = (LinearLayout) findViewById(R.id.adViewLayout);
        layout.addView(adView);

        // Create an ad request. Check logcat output for the hashed device ID to
        // get test ads on a physical device.

        AdRequest adRequest = new AdRequest.Builder()
       //     .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
         //   .addTestDevice("52EEC3DAD2FA75F22B44407D19072632")
            .build();

        // Start loading the ad in the background.
        adView.loadAd(adRequest);

XML:

<LinearLayout
    android:id="@+id/adViewLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true"
    android:orientation="vertical" >
</LinearLayout>

共有1个答案

刘升
2023-03-14

这是谷歌的人对此说的话

我一直得到错误‘谷歌播放服务资源找不到。检查您的项目配置,以确保包括资源。‘

您可以安全地忽略此消息。您的应用程序仍将获取和服务横幅广告。

 类似资料: