Advertisement
Guest User

Untitled

a guest
Aug 16th, 2011
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.83 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="ryan.test"
  4.      android:versionCode="1"
  5.      android:versionName="1.0">
  6.     <uses-sdk android:minSdkVersion="7" />
  7.  
  8.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  9.        
  10.         <activity android:name=".TestAndroidGlobalsActivity"
  11.                  android:label="@string/app_name">
  12.             <intent-filter>
  13.                 <action android:name="android.intent.action.MAIN" />
  14.                 <category android:name="android.intent.category.LAUNCHER" />
  15.             </intent-filter>
  16.         </activity>
  17.  
  18.     </application>
  19.     <application android:name=".MyApp"
  20.       android:icon="@drawable/icon"
  21.       android:label="@string/app_name"></application>
  22. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement