Home > Net >  Flutter login and registration not working on apk
Flutter login and registration not working on apk

Time:09-02

Login and Registration aren't working on the apk that we build, but it works on the emulator, and it works when it's connected with a cable to a real phone.

Any ideas?

We haven't changed anything considering login.(controllers, service, ect.) and we are using android phones

We are also using GetX if that matters.

Is it some android permission or something?

CodePudding user response:

You might forget the internet permission in Android Manifest.

in your AndroidManifest.xml file, add the below line inside <manifest></manifest>

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