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" />
|
|
|
|
|
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-10-29 02:03:50 +00:00
|
|
|
android:name=".MyApplication"
|
2018-09-14 00:21:51 +00:00
|
|
|
android:label="flutter_inappbrowser_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">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:launchMode="singleTop"
|
2019-10-29 02:03:50 +00:00
|
|
|
android:theme="@style/InAppWebViewTheme"
|
2018-09-14 00:21:51 +00:00
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
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" />
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-10-26 02:42:50 +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>
|
|
|
|
|
2018-09-14 00:21:51 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|