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