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.
59 lines
2.2 KiB
59 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="iut.android.pierrepierre"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="19"
|
|
android:targetSdkVersion="33" />
|
|
|
|
<permission
|
|
android:name="iut.android.pierrepierre.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="iut.android.pierrepierre.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:debuggable="true"
|
|
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.PierrePierre" >
|
|
<activity
|
|
android:name="iut.android.pierrepierre.MainActivity"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<uses-library
|
|
android:name="androidx.window.extensions"
|
|
android:required="false" />
|
|
<uses-library
|
|
android:name="androidx.window.sidecar"
|
|
android:required="false" />
|
|
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="iut.android.pierrepierre.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> |