0

Has anyone been able to get Flutter awesome_notifications to work with an apk file on your Android phone? Everything was working fine in my emulator/simulator, but when I flutter build apk, then transfer the app.apk file to my phone and open the app, awesome_notifications stop working.

Have you had issues running awesome_notifications in an apk file? How did you fix the issues? Or did everything work?

Page COW
  • 515
  • 13
  • 31

1 Answers1

0

My issue was NOT with awesome_notifications. I did not realize you have to add <uses-permission android:name="android.permission.INTERNET"/> to your AndroidManifest.xml file to make http requests in an apk file. That's why awesome_notifications wasn't working for me, because my http requests were not working in an apk file.

Page COW
  • 515
  • 13
  • 31