Advertisement
fkrone

Untitled

Sep 13th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.10 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.    package="com.example.my.first.app"
  3.    android:versionCode="1"
  4.    android:versionName="1.0" >
  5.  
  6.     <uses-sdk
  7.        android:minSdkVersion="14"
  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.     </application>
  15.  
  16. </manifest><manifest xmlns:android="http://schemas.android.com/apk/res/android"
  17.    package="com.example.my.first.app"
  18.    android:versionCode="1"
  19.    android:versionName="1.0" >
  20.  
  21.     <uses-sdk
  22.        android:minSdkVersion="15"
  23.        android:targetSdkVersion="15" />
  24.  
  25.     <application
  26.        android:icon="@drawable/ic_launcher"
  27.        android:label="@string/app_name"
  28.        android:theme="@style/AppTheme" >
  29.     </application>
  30.  
  31. </manifest><manifest xmlns:android="http://schemas.android.com/apk/res/android"
  32.    package="com.example.my.first.app"
  33.    android:versionCode="1"
  34.    android:versionName="1.0" >
  35.  
  36.     <uses-sdk
  37.        android:minSdkVersion="10"
  38.        android:targetSdkVersion="15" />
  39.  
  40.     <application
  41.        android:icon="@drawable/ic_launcher"
  42.        android:label="@string/app_name"
  43.        android:theme="@style/AppTheme" >
  44.     </application>
  45.  
  46. </manifest><manifest xmlns:android="http://schemas.android.com/apk/res/android"
  47.    package="com.example.my.first.app"
  48.    android:versionCode="1"
  49.    android:versionName="1.0" >
  50.  
  51.     <uses-sdk
  52.        android:minSdkVersion="8"
  53.        android:targetSdkVersion="15" />
  54.  
  55.     <application
  56.        android:icon="@drawable/ic_launcher"
  57.        android:label="@string/app_name"
  58.        android:theme="@style/AppTheme" >
  59.         <activity
  60.            android:name=".MainActivity"
  61.            android:label="@string/title_activity_main" >
  62.             <intent-filter>
  63.                 <action android:name="android.intent.action.MAIN" />
  64.  
  65.                 <category android:name="android.intent.category.LAUNCHER" />
  66.             </intent-filter>
  67.         </activity>
  68.     </application>
  69.  
  70. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement