hi,

<?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="8" />



</manifest>

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

Reply via email to