| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="ch.spherIC.recurvebowsight"
- android:versionCode="1"
- android:versionName="1.0" >
-
- <uses-sdk
- android:minSdkVersion="28"
- android:targetSdkVersion="32" />
-
- <application
- android:allowBackup="true"
- android:appComponentFactory="androidx.core.app.CoreComponentFactory"
- android:dataExtractionRules="@xml/data_extraction_rules"
- android:debuggable="true"
- android:extractNativeLibs="false"
- android:fullBackupContent="@xml/backup_rules"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher_round"
- android:supportsRtl="true"
- android:testOnly="true"
- android:theme="@style/Theme.RecurveBowSight" >
- <activity
- android:name="ch.spherIC.recurvebowsight.RBSMainActivity"
- android:exported="true"
- android:label="@string/app_name"
- android:theme="@style/Theme.RecurveBowSight.NoActionBar" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
-
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
-
- <provider
- android:name="androidx.startup.InitializationProvider"
- android:authorities="ch.spherIC.recurvebowsight.androidx-startup"
- android:exported="false" >
- <meta-data
- android:name="androidx.emoji2.text.EmojiCompatInitializer"
- android:value="androidx.startup" />
- <meta-data
- android:name="androidx.lifecycle.ProcessLifecycleInitializer"
- android:value="androidx.startup" />
- </provider>
- </application>
-
- </manifest>
|