No Enclosing Instance Of The Type Mainactivity Is Accessible In Scope
I have this code, which i want to get GPS latitude and longitude from GPSTracker class But the error show gps=new GPSTracker(MainActivity.this); gps.getLati
Solution 1:
you can only use MainActivity.this
if BootComplete is a nested class inside MainActivity.
as your GPSTracker only needs a context, you can do
gps = new GPSTracker(context);
Post a Comment for "No Enclosing Instance Of The Type Mainactivity Is Accessible In Scope"