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"
|
2019-11-29 15:59:18 +00:00
|
|
|
package="com.pichillilorenzo.flutter_inappwebview">
|
2018-09-25 01:26:31 +00:00
|
|
|
<application>
|
2021-03-11 21:42:18 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/AppTheme"
|
2022-03-07 17:16:25 +00:00
|
|
|
android:exported="true"
|
2021-03-11 21:42:18 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.in_app_browser.InAppBrowserActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density" />
|
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-04-17 16:15:49 +00:00
|
|
|
android:exported="true"
|
2021-03-11 21:42:18 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ChromeCustomTabsActivity" />
|
2022-04-17 19:47:35 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
|
|
|
android:exported="true"
|
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.TrustedWebActivity" />
|
2022-04-15 21:18:54 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
2022-04-17 16:15:49 +00:00
|
|
|
android:exported="true"
|
2022-04-15 21:18:54 +00:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ChromeCustomTabsActivitySingleInstance"
|
|
|
|
android:launchMode="singleInstance"/>
|
2022-04-17 19:47:35 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/ThemeTransparent"
|
|
|
|
android:exported="true"
|
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.TrustedWebActivitySingleInstance"
|
|
|
|
android:launchMode="singleInstance"/>
|
2021-02-22 11:16:23 +00:00
|
|
|
<receiver android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ActionBroadcastReceiver" />
|
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>
|
2018-09-19 02:10:00 +00:00
|
|
|
</manifest>
|