Home > database >  Flutter Crypto App working with full functionality on Emulator & physical device but after rolling o
Flutter Crypto App working with full functionality on Emulator & physical device but after rolling o

Time:08-22

I have built a Crypto App with API from App Running in Emulator/Physical Device

App Running after Downloading from Play Store

What do I do ? Please help.

CodePudding user response:

I belive you missed to add internet permission in the manifest

<manifest xlmns:android...>
 ...
 <uses-permission android:name="android.permission.INTERNET" />
 <application ...
</manifest>
  • Related