x13thangelx

manifest.xml

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