Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
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.

AndroidManifest.xml 887B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. package="net.spherIC.recurvebowsight"
  5. android:versionCode="1"
  6. android:versionName="0.9.0" >
  7. <uses-sdk
  8. android:minSdkVersion="10"
  9. android:targetSdkVersion="15" />
  10. <application
  11. android:icon="@drawable/ic_launcher"
  12. android:label="@string/app_name"
  13. android:theme="@style/GlassTheme" >
  14. <activity
  15. android:name="ch.spherIC.recurvebowsight.RBSMainActivity"
  16. android:label="@string/title_rbs_main_activity" >
  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. </application>
  23. </manifest>