mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-03 00:38:53 +00:00
bb07740d43
*Updated Icon *Upgraded NDK to 29.0.14206865 *Rebuilt Libs To 16KB Page Sizr Compatible *Updated Debug APK Name And Package
85 lines
3.4 KiB
XML
85 lines
3.4 KiB
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-feature android:glEsVersion="0x00030000" android:required="true"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" />
|
|
|
|
<queries>
|
|
<!-- WebView fails sometime if not queried, idk why -->
|
|
<package android:name="com.google.android.webview"/>
|
|
</queries>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/AppName"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Santoku"
|
|
android:name=".Santoku"
|
|
android:usesCleartextTraffic="true"
|
|
android:largeHeap="true"
|
|
android:isGame="false"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:launchMode="singleTask"
|
|
android:allowTaskReparenting="true"
|
|
android:windowSoftInputMode="adjustPan"
|
|
android:configChanges="uiMode"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.Santoku">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="santoku" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="file" />
|
|
<data android:scheme="content" />
|
|
<data android:mimeType="*/*" />
|
|
<data android:host="*" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".SetupActivity" android:exported="false"/>
|
|
<activity android:name=".SafeStartActivity" android:exported="false"/>
|
|
<provider
|
|
android:authorities="${applicationId}.provider"
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:grantUriPermissions="true"
|
|
android:exported="false">
|
|
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
|
|
<provider
|
|
android:name=".providers.AppDocumentsProvider"
|
|
android:authorities="${applicationId}.documents"
|
|
android:exported="true"
|
|
android:grantUriPermissions="true"
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
|
<intent-filter>
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
</intent-filter>
|
|
</provider>
|
|
</application>
|
|
|
|
</manifest>
|