Advertisement
Guest User

BYM_Manifest

a guest
Aug 20th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.41 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.    package="com.example.breakyourmind"
  3.    android:versionCode="1"
  4.    android:versionName="1.0" >
  5.  
  6.     <uses-sdk
  7.        android:minSdkVersion="9"
  8.        android:targetSdkVersion="19" />
  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.         <activity
  16.            android:name="com.example.menu.MainActivity"
  17.            android:label="@string/app_name" >
  18.             <intent-filter>
  19.                 <action android:name="android.intent.action.MAIN" />
  20.                
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.         <activity
  25.            android:name="com.example.imagequiz.MainActivity"
  26.             android:label="@string/app_name" >
  27.         </activity>
  28.         <activity
  29.            android:name="com.example.guesswhat.MainActivity"
  30.            android:label="@string/app_name" >
  31.         </activity>
  32.         <activity
  33.            android:name="com.example.findwords.MainActivity"
  34.            android:label="@string/app_name" >
  35.         </activity>
  36.         <activity
  37.            android:name="com.example.truefalse.MainActivity"
  38.            android:label="@string/app_name" >
  39.         </activity>
  40.     </application>
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement