Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.hello"
  3. android:versionCode="1"
  4. android:versionName="1.0" >
  5.  
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="17" />
  9.  
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@drawable/ic_launcher"
  13. android:label="@string/app_name"
  14. android:theme="@style/AppTheme" >
  15.  
  16.  
  17. <activity
  18. android:name="hello"
  19. android:label="@string/app_name">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. </activity>
  25. </application>
  26.  
  27. </manifest>
  28.  
  29. android:name="hello"
  30.  
  31. android:name="com.example.hello.MainActivity"
  32.  
  33. android:name="com.example.hello.hello"
  34.  
  35. <activity
  36. android:name=".MyFirstActivity"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement