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"
|
|
|
|
>
|
|
|
|
|
2024-05-03 19:51:57 +03:00
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
2023-05-23 01:46:42 +03:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2023-04-10 16:02:53 +03:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2023-05-23 01:46:42 +03:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2024-05-03 19:51:57 +03:00
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
2023-04-10 16:02:53 +03:00
|
|
|
|
|
|
|
<application
|
2023-05-23 01:46:42 +03:00
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:largeHeap="true"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="Grim"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.Main">
|
2023-04-10 16:02:53 +03:00
|
|
|
|
|
|
|
<activity
|
2023-05-23 01:46:42 +03:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:name=".MainActivity"
|
2024-05-03 19:51:57 +03:00
|
|
|
android:configChanges="orientation|screenSize"
|
2023-05-23 01:46:42 +03:00
|
|
|
android:exported="true">
|
2023-04-10 16:02:53 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2023-05-23 01:46:42 +03:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="grim" />
|
2023-04-10 16:02:53 +03:00
|
|
|
</activity>
|
2023-05-23 01:46:42 +03:00
|
|
|
<service android:name=".BackgroundService" android:stopWithTask="true" />
|
2023-04-10 16:02:53 +03:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|