флаттер в выпуске apk интернет не работает [закрыто]
флаттер, когда приложение находится в режиме отладки, все работает нормально, но когда я выпускаю APK, Интернет не работает в нем, и я уже добавил разрешение в Интернет в основном манифесте, но все же проблема такая же, как и у моей версии флаттера 1.22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns: tools = "http://schemas.android.com/tools" package = "com.app.wtb">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:requestLegacyExternalStorage="true"
android:name="io.flutter.app.FlutterApplication"
android:label="Tradister"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
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">
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.yalantis.ucrop.UCropActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
2 ответа
вам нужно добавить разрешение на Интернет в манифесте Android, перейдите в «android / app/src/main/AndroidManifest.xml» и добавьте это
<uses-permission android:name="android.permission.INTERNET" />
Обновите версию зависимости общих предпочтений, как показано ниже:
shared_preferences: ^0.5.12+4
Надеюсь, это сработает для вас