Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AndroidManifest.xml 1.1KB

1234567891011121314151617181920212223242526272829
  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. <intent-filter>
  17. <action android:name="android.intent.action.MAIN" />
  18. <category android:name="android.intent.category.LAUNCHER" />
  19. </intent-filter>
  20. </activity>
  21. <activity
  22. android:name="ch.spherIC.recurvebowsight.RiserSightConfigurationActivity"
  23. android:label="@string/title_activity_riser_sight_configuration" >
  24. </activity>
  25. </application>
  26. </manifest>