Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kooritea committed Nov 27, 2022
1 parent 5542c04 commit 1b7ddd4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.kooritea.fcmfix">
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application
Expand All @@ -25,7 +28,7 @@
android:resource="@array/xposed_scope" />
<activity
android:name=".MainActivity"
>
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
Expand All @@ -36,7 +39,7 @@
android:targetActivity=".MainActivity"
android:label="@string/app_name"
android:enabled="true"
>
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -49,7 +52,9 @@
android:exported="true"
>
</provider>
<receiver android:name=".BootCompletedReceiver">
<receiver
android:name=".BootCompletedReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
Expand Down

0 comments on commit 1b7ddd4

Please sign in to comment.