summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-11-28 12:26:44 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-11-28 12:26:44 +0300
commit0636a03474d366f485cd5cce398a8641639437f3 (patch)
treee557354ab169ef848f7183a26c3fb1689a2d6872 /org.fox.ttrss/src/main/AndroidManifest.xml
parentc50270bed69c59df33c4430ff32408b020f2e4d0 (diff)
required fixes to bump target SDK to 31 / minimum SDK to 24
Diffstat (limited to 'org.fox.ttrss/src/main/AndroidManifest.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/AndroidManifest.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/org.fox.ttrss/src/main/AndroidManifest.xml b/org.fox.ttrss/src/main/AndroidManifest.xml
index d7ca70fe..b3c0b687 100755
--- a/org.fox.ttrss/src/main/AndroidManifest.xml
+++ b/org.fox.ttrss/src/main/AndroidManifest.xml
@@ -39,6 +39,7 @@
<activity
android:name=".LaunchActivity"
android:label="@string/app_name"
+ android:exported="true"
android:theme="@android:style/Theme.NoDisplay" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -68,6 +69,7 @@
<activity
android:name=".DetailActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
+ android:exported="true"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -98,6 +100,7 @@
android:name=".share.ShareActivity"
android:excludeFromRecents="true"
android:label="@string/app_name"
+ android:exported="true"
android:theme="@style/DarkDialogTheme" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
@@ -111,6 +114,7 @@
android:name=".share.SubscribeActivity"
android:excludeFromRecents="true"
android:label="@string/subscribe_name"
+ android:exported="true"
android:theme="@style/DarkDialogTheme" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
@@ -222,13 +226,13 @@
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIwG6zsGB4qo6ZhjfwIJpm9WI7AqmWaoRXm6ZJnA" />
- <receiver android:name=".util.DeviceBootReceiver">
+ <receiver android:name=".util.DeviceBootReceiver" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
- <receiver android:name=".widget.SmallWidgetProvider" >
+ <receiver android:name=".widget.SmallWidgetProvider" android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="org.fox.ttrss.WIDGET_FORCE_UPDATE" />
@@ -246,6 +250,7 @@
android:name=".DashClock"
android:icon="@drawable/dashclock"
android:label="@string/app_name"
+ android:exported="true"
android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA" >
<intent-filter>
<action android:name="com.google.android.apps.dashclock.Extension" />