70 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:versionCode="1"
 | |
|     android:versionName="1.0"
 | |
|     android:compileSdkVersion="34"
 | |
|     android:compileSdkVersionCodename="14"
 | |
|     package="ch.mod_p.sre24.e5"
 | |
|     platformBuildVersionCode="34"
 | |
|     platformBuildVersionName="14">
 | |
|     <uses-sdk
 | |
|         android:minSdkVersion="21"
 | |
|         android:targetSdkVersion="34"/>
 | |
|     <permission
 | |
|         android:name="ch.mod_p.sre24.e5.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
 | |
|         android:protectionLevel="signature"/>
 | |
|     <uses-permission android:name="ch.mod_p.sre24.e5.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"/>
 | |
|     <application
 | |
|         android:theme="@style/Theme.E5"
 | |
|         android:label="@string/app_name"
 | |
|         android:icon="@mipmap/ic_launcher"
 | |
|         android:allowBackup="true"
 | |
|         android:supportsRtl="true"
 | |
|         android:extractNativeLibs="true"
 | |
|         android:roundIcon="@mipmap/ic_launcher_round"
 | |
|         android:appComponentFactory="androidx.core.app.CoreComponentFactory">
 | |
|         <activity
 | |
|             android:label="@string/title_activity_login"
 | |
|             android:name="ch.mod_p.sre24.e5.ui.login.LoginActivity"
 | |
|             android:exported="true">
 | |
|             <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:exported="false"
 | |
|             android:authorities="ch.mod_p.sre24.e5.androidx-startup">
 | |
|             <meta-data
 | |
|                 android:name="androidx.emoji2.text.EmojiCompatInitializer"
 | |
|                 android:value="androidx.startup"/>
 | |
|             <meta-data
 | |
|                 android:name="androidx.lifecycle.ProcessLifecycleInitializer"
 | |
|                 android:value="androidx.startup"/>
 | |
|             <meta-data
 | |
|                 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
 | |
|                 android:value="androidx.startup"/>
 | |
|         </provider>
 | |
|         <receiver
 | |
|             android:name="androidx.profileinstaller.ProfileInstallReceiver"
 | |
|             android:permission="android.permission.DUMP"
 | |
|             android:enabled="true"
 | |
|             android:exported="true"
 | |
|             android:directBootAware="false">
 | |
|             <intent-filter>
 | |
|                 <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE"/>
 | |
|             </intent-filter>
 | |
|             <intent-filter>
 | |
|                 <action android:name="androidx.profileinstaller.action.SKIP_FILE"/>
 | |
|             </intent-filter>
 | |
|             <intent-filter>
 | |
|                 <action android:name="androidx.profileinstaller.action.SAVE_PROFILE"/>
 | |
|             </intent-filter>
 | |
|             <intent-filter>
 | |
|                 <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION"/>
 | |
|             </intent-filter>
 | |
|         </receiver>
 | |
|     </application>
 | |
| </manifest>
 |