2018-09-14 00:21:51 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-10-29 02:03:50 +00:00
|
|
|
package="com.pichillilorenzo.flutterwebviewexample">
|
2018-09-14 00:21:51 +00:00
|
|
|
|
|
|
|
<!-- The INTERNET permission is required for development. Specifically,
|
|
|
|
flutter needs it to communicate with the running application
|
|
|
|
to allow setting breakpoints, to provide hot reload, etc.
|
|
|
|
-->
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2019-10-26 02:42:50 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2018-09-14 00:21:51 +00:00
|
|
|
|
2019-10-28 03:58:25 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_GPS" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_ASSISTED_GPS" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION" />
|
|
|
|
|
2019-11-28 01:32:03 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.VIDEO_CAPTURE" />
|
|
|
|
<uses-permission android:name="android.permission.AUDIO_CAPTURE" />
|
|
|
|
|
2018-09-14 00:21:51 +00:00
|
|
|
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
|
|
|
|
calls FlutterMain.startInitialization(this); in its onCreate method.
|
|
|
|
In most cases you can leave this as-is, but you if you want to provide
|
|
|
|
additional functionality it is fine to subclass or reimplement
|
|
|
|
FlutterApplication and put your custom class here. -->
|
|
|
|
<application
|
2019-11-29 15:59:18 +00:00
|
|
|
android:label="flutter_inappwebview_example"
|
2019-10-26 20:11:23 +00:00
|
|
|
android:usesCleartextTraffic="true"
|
2018-09-14 00:21:51 +00:00
|
|
|
android:icon="@mipmap/ic_launcher">
|
2022-04-17 19:47:35 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="asset_statements"
|
|
|
|
android:resource="@string/asset_statements" />
|
|
|
|
|
2020-05-23 00:16:33 +00:00
|
|
|
<!-- Don't delete the meta-data below.
|
|
|
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
|
|
|
<meta-data
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
android:value="2" />
|
2022-04-15 21:18:54 +00:00
|
|
|
<!-- <activity-->
|
|
|
|
<!-- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"-->
|
|
|
|
<!-- android:exported="true"-->
|
|
|
|
<!-- android:hardwareAccelerated="true"-->
|
|
|
|
<!-- android:launchMode="singleTop"-->
|
|
|
|
<!-- android:name=".EmbedderV1Activity"-->
|
|
|
|
<!-- android:theme="@style/LaunchTheme"-->
|
|
|
|
<!-- android:windowSoftInputMode="adjustResize">-->
|
|
|
|
<!-- <!– This keeps the window background of the activity showing-->
|
|
|
|
<!-- until Flutter renders its first frame. It can be removed if-->
|
|
|
|
<!-- there is no splash screen (such as the default splash screen-->
|
|
|
|
<!-- defined in @style/LaunchTheme). –>-->
|
|
|
|
<!-- <meta-data-->
|
|
|
|
<!-- android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"-->
|
|
|
|
<!-- android:value="true"/>-->
|
|
|
|
<!-- </activity>-->
|
2019-12-14 11:15:19 +00:00
|
|
|
<activity
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
|
|
|
|
android:hardwareAccelerated="true"
|
2020-05-23 00:16:33 +00:00
|
|
|
android:launchMode="singleTop"
|
2022-04-17 16:15:49 +00:00
|
|
|
android:exported="true"
|
2020-05-23 00:16:33 +00:00
|
|
|
android:name="io.flutter.embedding.android.FlutterActivity"
|
|
|
|
android:theme="@style/LaunchTheme"
|
2019-12-14 11:15:19 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2020-05-23 00:16:33 +00:00
|
|
|
<intent-filter>
|
2019-12-14 11:15:19 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2020-05-23 00:16:33 +00:00
|
|
|
</intent-filter>
|
2019-12-14 11:15:19 +00:00
|
|
|
</activity>
|
2019-10-26 02:42:50 +00:00
|
|
|
|
2020-05-23 17:33:54 +00:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.flutter_inappwebview.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
|
|
|
|
2020-06-02 23:45:58 +00:00
|
|
|
<provider
|
|
|
|
android:name="vn.hunghd.flutterdownloader.DownloadedFileProvider"
|
|
|
|
android:authorities="${applicationId}.flutter_downloader.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths"/>
|
|
|
|
</provider>
|
2019-10-26 02:42:50 +00:00
|
|
|
|
2020-07-27 09:52:37 +00:00
|
|
|
<!-- Hybrid composition -->
|
|
|
|
<meta-data
|
|
|
|
android:name="io.flutter.embedded_views_preview"
|
|
|
|
android:value="true" />
|
|
|
|
|
|
|
|
|
2018-09-14 00:21:51 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|