You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android API 34 Describe the bug
When I use flutter_downloader to download files in flutter, the following information is displayed in the android emulator
<manifestxmlns:android="http://schemas.android.com/apk/res/android"package="aaa">
<uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permissionandroid:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permissionandroid:name="android.permission.INTERNET" />
<uses-permissionandroid:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permissionandroid:name="android.permission.ACCESS_WIFI_STATE"/>
<!-- <uses-permission android:name="android.permission.READ_PHONE_STATE"/> --><!-- <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> -->
<uses-permissionandroid:name="android.permission.POST_NOTIFICATIONS" />
<applicationandroid:label="aaa"android:name="${applicationName}"android:icon="@mipmap/ic_launcher"android:enableOnBackInvokedCallback="true"android:requestLegacyExternalStorage="true">
<activityandroid:name=".MainActivity"android:exported="true"android:launchMode="singleTop"android:theme="@style/LaunchTheme"android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"android:hardwareAccelerated="true"android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible to the user while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. -->
<meta-dataandroid:name="io.flutter.embedding.android.NormalTheme"android:resource="@style/NormalTheme"
/>
<intent-filter>
<actionandroid:name="android.intent.action.MAIN"/>
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-dataandroid:name="flutterEmbedding"android:value="2" />
<providerandroid:name="vn.hunghd.flutterdownloader.DownloadedFileProvider"android:authorities="${applicationId}.flutter_downloader.provider"android:exported="false"android:grantUriPermissions="true">
<meta-dataandroid:name="android.support.FILE_PROVIDER_PATHS"android:resource="@xml/provider_paths"/>
</provider>
</application>
</manifest>
There is no other information and the callback function is not called
I have no idea where I'm going wrong, can anyone provide some help?
The text was updated successfully, but these errors were encountered:
Android API 34
Describe the bug
When I use flutter_downloader to download files in flutter, the following information is displayed in the android emulator
flutter code:
AndroidManifest.xml:
There is no other information and the callback function is not called
I have no idea where I'm going wrong, can anyone provide some help?
The text was updated successfully, but these errors were encountered: