Guest User

Untitled

a guest
May 15th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 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="com.example.vertretungsplanapp"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-permission android:name="android.permission.INTERNET"/>
  7. <uses-sdk
  8. android:minSdkVersion="8"
  9. android:targetSdkVersion="23" />
  10.  
  11. <application
  12. android:allowBackup="true"
  13. android:icon="@drawable/ic_launcher"
  14. android:label="@string/app_name"
  15. android:theme="@style/AppTheme" >
  16. <activity
  17. android:name=".splash"
  18. android:label="@string/app_name" >
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21.  
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. </activity>
  25.  
  26. <activity
  27. android:name="com.example.vertretungsplanapp.MainActivity"
  28. android:label="@string/app_name">
  29. </activity>
  30.  
  31. </application>
  32.  
  33. </manifest>
Add Comment
Please, Sign In to add comment