summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Lin <danny@kdrag0n.dev>2021-10-05 17:16:15 -0700
committerDanny Lin <danny@kdrag0n.dev>2021-10-05 17:16:15 -0700
commit82d31b18dd2550e05f89248f128cb571eecc863a (patch)
tree2c1dbee5b2d60c4acd3ca127f683c9d66c89350c
parentb13034a011b9cc08274c2bc4b90b8213d4293e97 (diff)
Export boot receiver explicitlysugisawa
Android 12 requires explicit exports.
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b97ffbe..b586e60 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -29,7 +29,8 @@
android:supportsRtl="true">
<receiver android:name=".BootReceiver"
- android:directBootAware="true">
+ android:directBootAware="true"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>