Error string types not allowed at android:configChanges in manifest file
Asked Answered
H

2

31

Here is my manifest file which shows error string types not allowed at android:configChanges please help me in rectification of the error. below is my manifest file.

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

    <uses-sdk android:minSdkVersion="10"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".MyBannerActivity"
            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>

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


</manifest>
Hallowed answered 26/6, 2012 at 13:45 Comment(2)
What are you looking for exactly?Altorilievo
Error in Eclipse for android:configChanges #7900267Diatom
F
58
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"

screenSize & smallestScreenSize attributes are not available in SDK 10.They are been introduced in API level 13.

http://developer.android.com/guide/topics/manifest/activity-element.html#config

Foxtail answered 26/6, 2012 at 13:51 Comment(4)
IE, change project target to API level 13 or above.Monroe
Project > Properties > Android > Change 'Project Build Target' to above 3.2.Valval
But... that means my app will not work in Gingerbread, right?:-(Galatea
This does not mean you will loose compatibility with gingerbread @Yavierre. Target SDK is just the compiler that runs on your code. The "minimum SDK level" is the furtherest back your app will be compatible with.Softball
N
6
  • Make sure you have the latest copy of the Android SDK and that you're compiling against at least Android v3.2 (set target in project.properties to android-13).
  • The Google Mobile Ads SDK for Android requires a run-time of Android 2.3 or later (set android:minSdkVersion to at least 9 in your AndroidManifest.xml). This means you can develop with the latest version of the Android SDK and your app will still run on an earlier Android version (2.3 minimum).
Nereidanereids answered 6/8, 2014 at 13:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.