58 lines
2.6 KiB
XML
58 lines
2.6 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="deckers.thibault.aves"
|
|
android:installLocation="auto">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<!-- TODO remove this permission once this issue is fixed:
|
|
https://github.com/flutter/flutter/issues/42349
|
|
https://github.com/flutter/flutter/issues/42451
|
|
-->
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<application
|
|
android:name="io.flutter.app.FlutterApplication"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="Aves"
|
|
android:requestLegacyExternalStorage="true">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
android:hardwareAccelerated="true"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/AppTheme"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter tools:ignore="AppLinkUrlError">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
<data android:mimeType="video/*" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
|
|
android:value="false" />
|
|
</activity>
|
|
<!-- file provider to share files having a file:// URI -->
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="deckers.thibault.aves.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="AIzaSyDf-1dN6JivrQGKSmxAdxERLM2egOvzGWs" />
|
|
</application>
|
|
</manifest>
|