londonappbrewery / Clima-Flutter-Completed

The completed code for the Clima Project - The Complete Flutter Development Bootcamp

Home Page:https://www.appbrewery.co/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

App not running on real device even it’s successfully installed

himanshu-1034 opened this issue · comments

I installed the clima weather detection app on android
I enabled the location services in the mobile as well as the app.
But it’s not moving forward to the loading page
It’s stuck on that loading screen
Do I need to provide api nearer to my country ?? Or something else. Please help me on this

Hi Himanshu, when you use Android Studio(AS) to run app on the phone, are you getting any clue on the run window of AS?

This is because you have not given the permission to access internet on your device
You can do it so, just by adding this line in the android Manifest file( Internet permission )

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

NOTE: You can add this line just where you gave the permission for accessing the location.