aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-10-24 18:30:11 -0700
committerAllan Wang <me@allanwang.ca>2021-10-24 18:30:11 -0700
commitab7447c811808568cc7367eef3149aead2d990b3 (patch)
treedc48de32c6f78f91c3611b761e86a1fac5e4f5ac /app/src/main/AndroidManifest.xml
parentb5a5ad755eed7e9c973cda5de7f0387c92d5d9fd (diff)
downloadfrost-ab7447c811808568cc7367eef3149aead2d990b3.tar.gz
frost-ab7447c811808568cc7367eef3149aead2d990b3.tar.bz2
frost-ab7447c811808568cc7367eef3149aead2d990b3.zip
Version bumps, koin removal, android 12 target
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 62cf57e9..dfdc9706 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -31,7 +31,7 @@
<activity
android:name=".StartActivity"
- android:label="@string/frost_name"
+ android:exported="true"
android:noHistory="true"
android:theme="@style/FrostTheme.Splash">
<intent-filter>
@@ -174,14 +174,17 @@
<receiver
android:name=".services.UpdateReceiver"
- android:enabled="true">
+ android:enabled="true"
+ android:exported="false">
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
<!--Widgets-->
- <receiver android:name=".widgets.NotificationWidget">
+ <receiver
+ android:name=".widgets.NotificationWidget"
+ android:exported="false">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>