Hello. Currentyl i have a book called beginning android games by appress 
written by Mario zechner. I COPIED EXACTLY wats in the book for a setup for 
an app and this xml file just wont work. Thanks in advance if u can help 
me. I appreciate it









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

   

    
       <application android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" 
         android:debuggable="true">
       
       
          <activity   android:name=".NP4Activity"
            android:label="@string/app_name" 
            android:screenOrientation="landscape"
            android:configChanges="keyboard/keyboardHidden/orientation">
           
            
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

    <uses-permission 
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WAKE_LOCK"/>
    <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="9"/>
    
    

</manifest>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to