Tracking smart phone spcially in android

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Amros
    New Member
    • Aug 2013
    • 1

    Tracking smart phone spcially in android

    Hi everyone

    Actually I need to help me because I have graduate project.
    I want to know to monitor smart phone(android) by GPS
    not only that also sending and receiving data by Wifi

    Please help me

    Thanks for everyone.
  • univercel
    New Member
    • Aug 2013
    • 11

    #2
    Code:
      LocationManager locationManager;
           locationManager =     this.getSystemService(LOCATION_SERVICE);
     location = locationManager
                                        .getLastKnownLocation(LocationManager.GPS_PROVIDER);
    This will get you started.

    Comment

    Working...