Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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="wetenschappelijk.project"
  4. android:versionCode="36"
  5. android:versionName="3.0.0" >
  6.  
  7. <uses-sdk android:minSdkVersion="7" />
  8. <application
  9. android:icon="@drawable/ic_launcher"
  10. android:label="@string/app_name" >
  11.  
  12. <activity
  13. android:label="@string/app_name"
  14. android:name=".GalgjeActivity"
  15. android:configChanges="orientation|keyboardHidden"
  16. >
  17. <intent-filter >
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. </activity>
  22. <activity
  23. android:name=".MenuActivity"
  24. />
  25. <activity
  26. android:name=".GameActivity"
  27. />
  28.  
  29. <activity
  30. android:name="wetenschappelijk.project.Settings"
  31. />
  32. <activity
  33. android:name="wetenschappelijk.project.Multiplayer"
  34. />
  35. <activity android:name="com.google.ads.AdActivity"
  36. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
  37. <meta-data android:value="a14ef899d6be24a" android:name="ADMOB_PUBLISHER_ID"/>
  38. </application>
  39.  
  40. <uses-sdk android:minSdkVersion="8" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement