Skip to content

Commit

Permalink
Merge pull request #1147 from AlexV525/patch-1
Browse files Browse the repository at this point in the history
[Android] Explicitly `export` for the receiver defined in AndroidManifest
  • Loading branch information
pichillilorenzo authored Apr 19, 2022
2 parents 304792c + 04f0ce7 commit 414b207
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand All @@ -37,4 +40,4 @@
"android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</manifest>
</manifest>

0 comments on commit 414b207

Please sign in to comment.