You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4 KiB

9 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.euricainc.ambc.xkcd"
  4. android:versionCode="3"
  5. android:versionName="0.0.3-RC1">
  6. <!-- This defines the minimum Android version that can run this program -->
  7. <uses-sdk
  8. android:minSdkVersion="17"
  9. android:targetSdkVersion="19" />
  10. <!-- We need to ask for permission to use the INTERNETZ -->
  11. <uses-permission android:name="android.permission.INTERNET" /><!--
  12. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> -->
  13. <application
  14. android:allowBackup="true"
  15. android:icon="@drawable/ic_launcher"
  16. android:label="@string/app_name"
  17. android:hardwareAccelerated="true" >
  18. <!-- Remember to define all the Activities in the AndroidManifest! -->
  19. <activity
  20. android:name="com.euricainc.ambc.xkcd.MyActivity"
  21. android:label="@string/app_name" android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen">
  22. <!-- This basically tells the Android System that the Activity "MyActivity" is to be started when the launcher icon is pressed. -->
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. </application>
  29. </manifest>