Fixed not receiving sharing intents, reduced renovate frequency (#84)
All checks were successful
/ build (push) Successful in 5m36s

This commit is contained in:
Varakh 2023-12-16 18:59:00 +01:00
parent 3ae2c37813
commit a4defff982
3 changed files with 39 additions and 1 deletions

View file

@ -1,7 +1,7 @@
# CHANGELOG # CHANGELOG
## 1.6.3+21 - UNRELEASED ## 1.6.3+21 - UNRELEASED
* ... * Fixed not receiving share requests from other applications
## 1.6.2+20 ## 1.6.2+20
* Updated internal dependencies * Updated internal dependencies

View file

@ -21,6 +21,41 @@
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity> </activity>
<!-- Don't delete the meta-data below. <!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->

View file

@ -4,6 +4,9 @@
"config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended" "config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended"
], ],
"prConcurrentLimit": 0, "prConcurrentLimit": 0,
"schedule": [
"monthly"
],
"ignorePaths": [ "ignorePaths": [
"android/**", "android/**",
"ios/**" "ios/**"