Flutter app works when building release APK but not when provided through Google Play store

There is an application connected to the Internet.Release APK build is running and the app is connected to the Internet.The app that builds the App Bundle, uploads it to the Google Play store, and installs it through Google Play is running, but it does not connect to the Internet.When you download apk from Google Play Console through App Bundle Explorer, the app runs but does not connect to the Internet.I also see Android.permission.INTERNET set up…what could be the problem in my case?Manifest in this directory I have a file.Copy the Internet permissions from the directory on android/app/src/debug/AndroidManifest.xml and add the Internet permissions to this directory.Android/アプリ/src/main/AndroidManifest.xmlThere is an application connected to the Internet.Release APK build is running and the app is connected to the Internet.The app that builds the App Bundle, uploads it to the Google Play store, and installs it through Google Play is running, but it does not connect to the Internet.When you download apk from Google Play Console through App Bundle Explorer, the app runs but does not connect to the Internet.I also see Android.permission.INTERNET set up…what could be the problem in my case?Manifest in this directory I have a file.Copy the Internet permissions from the directory on android/app/src/debug/AndroidManifest.xml and add the Internet permissions to this directory.Android/アプリ/src/main/AndroidManifest.xml<application android:label=”APP_NAME” android:usesCleartextTraffic=”true” //これを追加></application><uses-permission android:name=”android.permission.INTERNET”//これを追加<application android:label=”APP_NAME” android:usesCleartextTraffic=”true” //これを追加></application><uses-permission android:name=”android.permission.INTERNET”//これを追加<application android:label=”APP_NAME” android:usesCleartextTraffic=”true” //これを追加></application><uses-permission android:name=”android.permission.INTERNET”//これを追加I learned that the problem was not about the Internet connection itself. The problem appears to be inside flutter_secure_storage. However, only if it was distributed to the Google Play store…The problem disappeared after updating the flutter_secure_storage to the latest version.I learned that the problem was not about the Internet connection itself. The problem appears to be inside flutter_secure_storage. However, only if it was distributed to the Google Play store…The problem disappeared after updating the flutter_secure_storage to the latest version.Some of the options I can think of:-1. Uploaded during play from aab Build apk. (2) Conduct verification. Make sure that having your own manifest does not overwrite the configuration with the flavor you are building.3. Test on various devices4. Check to see if there is an installed certificate5. Reverse Engineering (last option)1. Uploaded during play from aab Build apk. (2) Conduct verification. Make sure that having your own manifest does not overwrite the configuration with the flavor you are building.3. Test on various devices4. Check to see if there is an installed certificate5. Reverse Engineering (last option)1. Uploaded during play from aab Build apk. (2) Conduct verification. Make sure that having your own manifest does not overwrite the configuration with the flavor you are building.3. Test on various devices4. Check to see if there is an installed certificate5. Reverse Engineering (last option)

error: Content is protected !!