2

My flutter application is not getting data from http after build release apk. But everything is OK in build debug mode. There is no problem on my code since it is loading the data from http in build debug mode.

Can any one tell me what did I miss.

Abdulhakim Zeinu
  • 3,333
  • 1
  • 30
  • 37

1 Answers1

6

give permission of <uses-permission android:name="android.permission.INTERNET" /> in your android Manifest file.

then try again to build apk

Jay Gadariya
  • 1,823
  • 7
  • 25