Advertisement
Guest User

Untitled

a guest
Aug 18th, 2010
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.       package="de.foxylion.android.testapp"
  4.       android:versionCode="1"
  5.       android:versionName="1.0">
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  7.         <activity android:name=".Main"
  8.                   android:label="@string/app_name"
  9.                   android:launchMode="singleTop">
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN" />
  12.                 <category android:name="android.intent.category.LAUNCHER" />
  13.             </intent-filter>
  14.         </activity>
  15.        
  16.         <activity android:name=".Sub"
  17.                   android:launchMode="singleTop">
  18.         </activity>
  19.  
  20.     </application>
  21.     <uses-sdk android:minSdkVersion="7" />
  22.  
  23. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement