Merge pull request #1147 from AlexV525/patch-1

[Android] Explicitly `export` for the receiver defined in AndroidManifest
This commit is contained in:
Lorenzo Pichilli 2022-04-19 10:22:49 +02:00 committed by GitHub
commit 414b2075eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -25,7 +25,10 @@
android:exported="true"
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.TrustedWebActivitySingleInstance"
android:launchMode="singleInstance"/>
<receiver android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ActionBroadcastReceiver" />
<receiver
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ActionBroadcastReceiver"
android:enabled="true"
android:exported="false" />
<meta-data
android:name="io.flutter.embedded_views_preview"
android:value="true" />
@ -37,4 +40,4 @@
"android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</manifest>
</manifest>