2018-09-19 02:10:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-09-14 00:21:51 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-11-27 12:03:36 +00:00
|
|
|
package="com.pichillilorenzo.flutter_inappwebview_android">
|
2018-09-25 01:26:31 +00:00
|
|
|
<application>
|
2021-03-11 21:42:18 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/AppTheme"
|
2022-10-13 18:05:49 +00:00
|
|
|
android:exported="false"
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.in_app_browser.InAppBrowserActivity"
|
2021-03-11 21:42:18 +00:00
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density" />
|
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-10-13 18:05:49 +00:00
|
|
|
android:exported="false"
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.chrome_custom_tabs.ChromeCustomTabsActivity" />
|
2022-04-17 19:47:35 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-10-13 18:05:49 +00:00
|
|
|
android:exported="false"
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.chrome_custom_tabs.TrustedWebActivity" />
|
2022-04-15 21:18:54 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-10-13 18:05:49 +00:00
|
|
|
android:exported="false"
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.chrome_custom_tabs.ChromeCustomTabsActivitySingleInstance"
|
2022-04-15 21:18:54 +00:00
|
|
|
android:launchMode="singleInstance"/>
|
2022-04-17 19:47:35 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-10-13 18:05:49 +00:00
|
|
|
android:exported="false"
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.chrome_custom_tabs.TrustedWebActivitySingleInstance"
|
2022-04-17 19:47:35 +00:00
|
|
|
android:launchMode="singleInstance"/>
|
2022-04-19 06:58:58 +00:00
|
|
|
<receiver
|
2023-11-27 12:03:36 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.chrome_custom_tabs.ActionBroadcastReceiver"
|
2022-04-19 06:58:58 +00:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2020-08-24 15:48:50 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="io.flutter.embedded_views_preview"
|
|
|
|
android:value="true" />
|
2018-09-19 02:10:00 +00:00
|
|
|
</application>
|
2020-09-26 09:35:06 +00:00
|
|
|
|
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name=
|
|
|
|
"android.support.customtabs.action.CustomTabsService" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
2022-04-19 06:58:58 +00:00
|
|
|
</manifest>
|