Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2021-10-18 10:27:47 +0300
committerStefan Niedermann <info@niedermann.it>2021-10-18 10:27:47 +0300
commita2c59e2b4ec05ac4498389110522c049b6605f5c (patch)
tree7818e40a0f3977dcce0cd6938c3b2148d5188cd7 /app/src/main/AndroidManifest.xml
parent05e7ca848b0c79a6663a50e5d88bde53f2ecd1d0 (diff)
parent5b524bc0e28a0afde1a741f32687c065df0e72fc (diff)
Merge branch 'target-sdk-31'
# Conflicts: # app/build.gradle
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml30
1 files changed, 20 insertions, 10 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 311829a4c..f889a4831 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -45,7 +45,8 @@
<activity
android:name=".ui.MainActivity"
android:label="@string/app_name_short"
- android:theme="@style/SplashTheme">
+ android:theme="@style/SplashTheme"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -77,7 +78,8 @@
<activity
android:name=".ui.sharetarget.ShareTargetActivity"
android:label="@string/share_add_to_card"
- android:theme="@style/SplashTheme">
+ android:theme="@style/SplashTheme"
+ android:exported="false">
<intent-filter>
<action android:name="android.intent.action.SEND" />
@@ -129,7 +131,8 @@
<activity
android:name=".ui.preparecreate.PrepareCreateActivity"
android:description="@string/add_a_new_card_using_the_button"
- android:label="@string/add_card">
+ android:label="@string/add_card"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />
@@ -145,7 +148,8 @@
<activity
android:name=".ui.PushNotificationActivity"
- android:label="@string/app_name">
+ android:label="@string/app_name"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
@@ -174,7 +178,8 @@
<receiver
android:name="it.niedermann.nextcloud.deck.ui.widget.upcoming.UpcomingWidget"
- android:label="@string/widget_upcoming_title">
+ android:label="@string/widget_upcoming_title"
+ android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -185,7 +190,8 @@
android:resource="@xml/upcoming_widget_provider" />
</receiver>
- <activity android:name=".ui.widget.stack.StackWidgetConfigurationActivity">
+ <activity android:name=".ui.widget.stack.StackWidgetConfigurationActivity"
+ android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
@@ -193,7 +199,8 @@
<receiver
android:name="it.niedermann.nextcloud.deck.ui.widget.stack.StackWidget"
- android:label="@string/widget_stack_title">
+ android:label="@string/widget_stack_title"
+ android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -209,7 +216,8 @@
android:description="@string/add_a_new_card_using_the_button"
android:icon="@drawable/ic_app_logo"
android:label="@string/add_card"
- android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
+ android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
+ android:exported="true">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
@@ -222,7 +230,8 @@
<activity
android:name=".ui.widget.singlecard.SelectCardForWidgetActivity"
android:label="@string/share_add_to_card"
- android:theme="@style/SplashTheme">
+ android:theme="@style/SplashTheme"
+ android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
@@ -235,7 +244,8 @@
<receiver
android:name=".ui.widget.singlecard.SingleCardWidget"
- android:label="@string/single_card">
+ android:label="@string/single_card"
+ android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>