错误:“您必须拥有与AdMob的INTERNET和ACCESS_NETWORK_STATE权限”

时间:2013-08-22 12:07:43

标签: android admob android-studio

正如标题所述,即使我非常确信我在Android Manifest中获得了正确的代码,我也会收到这个特定的错误。我已经检查过常见的错误,例如意外输入"用户"而不是"使用"并确保我使用单数"许可"。尽管我付出了最大的努力,但仍然会遇到此错误。我希望你们中的一个人能指出我失踪的东西。

这里是Android Manifest的相关部分

<activity android:name="com.google.ads.AdActivity"
          android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" >
</activity>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 

这就是我应该展示测试广告的整个布局。相关视图位于最底部附近。

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".HomeActivity" >

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    android:paddingBottom="0dp"
    android:layout_weight=".5"
    tools:context=".HomeActivity">

    <!-- Space reserved for buttons at top of screen -->

</LinearLayout>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    android:paddingBottom="0dp"
    android:layout_weight="1"
    tools:context=".HomeActivity">

    <Button
        android:id="@+id/btnAddRevenue"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:layout_alignParentLeft="true"
        android:text="@string/btnAddRevenue_Text" />

    <Button
        android:id="@+id/btnAddExpense"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:layout_alignParentRight="true"
        android:text="@string/btnAddExpense_Text" />

</LinearLayout>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    android:paddingBottom="0dp"
    android:layout_weight="5"
    tools:context=".HomeActivity">

    <ListView
        android:layout_height="fill_parent"
        android:layout_width="fill_parent" />

    <!-- <TextView
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:text="@string/fillerText" /> -->
</LinearLayout>

<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:paddingLeft="0dp"
        android:paddingRight="0dp"
        android:paddingTop="0dp"
        android:paddingBottom="0dp"
        android:layout_weight=".5"
        tools:context=".HomeActivity">

    <!-- Space reserved for ads -->
    <com.google.ads.AdView
        android:id="@+id/adHome_bottomBanner"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        ads:adUnitId="@string/adId_bottomBanner"
        ads:adSize="BANNER"
        ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
        ads:loadAdOnCreate="true" />

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

我认为是因为你在<application>内添加了权限。你应该在<manifest>标签内写下来。

这是示例代码。

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

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.stackdemo.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>
  </application>

</manifest>

答案 1 :(得分:0)

试试这个::

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

我遇到了同样的问题。但是我在清单中写了这样的文字,它对我有用。我认为是某种错误。

希望它能帮助!!