You've already forked KsuWebUIStandalone
mirror of
https://github.com/5ec1cff/KsuWebUIStandalone.git
synced 2025-09-06 06:37:11 +00:00
25 lines
951 B
XML
25 lines
951 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
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:theme="@style/Theme.KsuWebUI"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
tools:targetApi="31" >
|
|
<activity
|
|
android:name=".WebUIActivity"
|
|
android:exported="true"
|
|
android:autoRemoveFromRecents="true"
|
|
android:documentLaunchMode="intoExisting"/>
|
|
</application>
|
|
|
|
</manifest> |