2023-04-10 16:02:53 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2023-04-21 03:45:59 +03:00
|
|
|
android:label="Grim"
|
2023-04-10 16:02:53 +03:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.Main">
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2023-04-19 02:14:39 +03:00
|
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|uiMode|keyboard"
|
2023-04-10 16:02:53 +03:00
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2023-04-21 03:45:59 +03:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="grim_android" />
|
2023-04-10 16:02:53 +03:00
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|