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 1.1KB

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