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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="1.0.2" >
  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:configChanges="orientation"
  16. android:label="@string/title_rbs_main_activity"
  17. android:screenOrientation="sensorPortait" >
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. <activity
  24. android:name="ch.spherIC.recurvebowsight.configuration.MainConfigurationActivity"
  25. android:label="@string/title_activity_main_configuration"
  26. android:windowSoftInputMode="stateHidden"
  27. android:screenOrientation="sensorPortait" >
  28. </activity>
  29. <activity
  30. android:name="ch.spherIC.recurvebowsight.configuration.RiserConfigurationActivity"
  31. android:label="@string/title_activity_riser_configuration"
  32. android:windowSoftInputMode="stateHidden"
  33. android:screenOrientation="sensorPortait" >
  34. </activity>
  35. <activity
  36. android:name="ch.spherIC.recurvebowsight.configuration.SightConfigurationActivity"
  37. android:label="@string/title_activity_sight_configuration"
  38. android:windowSoftInputMode="stateHidden"
  39. android:screenOrientation="sensorPortait" >
  40. </activity>
  41. <activity
  42. android:name="ch.spherIC.recurvebowsight.configuration.ArcherySetupConfigurationActivity"
  43. android:label="@string/title_activity_archery_setup_configuration"
  44. android:windowSoftInputMode="stateHidden"
  45. android:screenOrientation="sensorPortait" >
  46. </activity>
  47. </application>
  48. </manifest>