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.3KB

12345678910111213141516171819202122232425262728293031323334
  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.configuration.MainConfigurationActivity"
  24. android:label="@string/title_activity_main_configuration" >
  25. </activity>
  26. <activity
  27. android:name="ch.spherIC.recurvebowsight.configuration.RiserConfigurationActivity"
  28. android:label="@string/title_activity_riser_configuration" >
  29. </activity>
  30. </application>
  31. </manifest>