Android App zur Berechnung der Visiereinstellung eines Recurvebogens.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AndroidManifest.xml 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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" >
  6. <uses-sdk
  7. android:minSdkVersion="28"
  8. android:targetSdkVersion="32" />
  9. <application
  10. android:allowBackup="true"
  11. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  12. android:dataExtractionRules="@xml/data_extraction_rules"
  13. android:debuggable="true"
  14. android:extractNativeLibs="false"
  15. android:fullBackupContent="@xml/backup_rules"
  16. android:icon="@mipmap/ic_launcher"
  17. android:label="@string/app_name"
  18. android:roundIcon="@mipmap/ic_launcher_round"
  19. android:supportsRtl="true"
  20. android:testOnly="true"
  21. android:theme="@style/Theme.RecurveBowSight" >
  22. <activity
  23. android:name="ch.spherIC.recurvebowsight.RBSMainActivity"
  24. android:exported="true"
  25. android:label="@string/app_name"
  26. android:theme="@style/Theme.RecurveBowSight.NoActionBar" >
  27. <intent-filter>
  28. <action android:name="android.intent.action.MAIN" />
  29. <category android:name="android.intent.category.LAUNCHER" />
  30. </intent-filter>
  31. </activity>
  32. <provider
  33. android:name="androidx.startup.InitializationProvider"
  34. android:authorities="ch.spherIC.recurvebowsight.androidx-startup"
  35. android:exported="false" >
  36. <meta-data
  37. android:name="androidx.emoji2.text.EmojiCompatInitializer"
  38. android:value="androidx.startup" />
  39. <meta-data
  40. android:name="androidx.lifecycle.ProcessLifecycleInitializer"
  41. android:value="androidx.startup" />
  42. </provider>
  43. </application>
  44. </manifest>