Phone tracker


Source link: https://github.com/fooock/phone-tracker

Phone tracker

Phone tracker is an Android library to gather environment signals, like cell towers, wifi access points and gps locations. You can configure how to scan. Also you can make hot configuring updates, and be notified when the configuration is updated, among other things.

Installation

For gradle based projects you need to add to your build.gradle

repositories {

  jcenter() 
}

And in your dependencies block add this line

compile 'com.fooock:phone-tracker:0.1.1'

Getting started

You only need to create and instance of the PhoneTracker class and pass the Context to it

PhoneTracker phoneTracker = new PhoneTracker(this);

Now you can call the start() method from the tracker instance. The default configuration is used. For default all sensors are enabled.

Important: Note that if you are target Android 6.0 or greater, you need to grant location permissions to the application in order to gather environment data. You can listen for missing permissions from the PhoneTracker class using the PhoneTracker.PermissionListener interface:

// Listen for missing permissions phoneTracker.addPermissionListener(new PhoneTracker.PermissionListener() {

  @Override
  public void onPermissionNotGranted(String... permission) {

}
 
}
);

If the permissions are not granted, the tracker can't start.

To check if the tracker is running:

// Check the state of the tracker boolean running = phoneTracker.isRunning();

To stop the tracker:

// Stop all sensors and don't receive more updates phoneTracker.stop();

Tracker configuration

To create a default Configuration:

// Create a default configuration Configuration configuration = new Configuration.Builder().create();

Now see how you can customize the configuration:

  • Wifi Create a Wifi configuration
// Create a new wifi configuration Configuration.Wifi wifiConf = new Configuration.Wifi();
 wifiConf.setScanDelay(3000);
  • Cell Create a cell configuration
// Create a new cell configuration Configuration.Cell cellConf = new Configuration.Cell();
 cellConf.setScanDelay(1000);
  • GPS Create a GPS configuration
// Create a gps configuration Configuration.Gps gpsConf = new Configuration.Gps();
 gpsConf.setMinDistanceUpdate(10);
 gpsConf.setMinTimeUpdate(7000);

To create the new custom configuration:

// Create a new custom configuration Configuration configuration = new Configuration.Builder()
  .useCell(true).cell(cellConf)
  .useWifi(true).wifi(wifiConf)
  .useGps(true).gps(gpsConf)
  .create();

In order to make effective the configuration:

// Set the init configuration phoneTracker.setConfiguration(configuration);

Also, if you want to change the current configuration when the tracker is running:

// Update the current configuration phoneTracker.updateConfiguration(configuration);

This method only loads the configuration that has changed, without stopping the tracker. You can listen for configuration changes using the PhoneTracker.ConfigurationChangeListener interface:

// Listen for configuration changes phoneTracker.setConfigurationChangeListener(new PhoneTracker.ConfigurationChangeListener(){

  @Override
  public void onConfigurationChange(Configuration configuration) {

}
 
}
);

Receiving data

You can setup listeners to receive wifi, gps updates and cell tower signals. See below.

  • Wifi
// Set the listener to receive wifi scans phoneTracker.setWifiScanListener(new PhoneTracker.WifiScanListener() {

  @Override
  public void onWifiScansReceived(long timestamp, List<ScanResult> wifiScans) {

}
 
}
);
  • GPS
// Set the listener to receive location updates from gps phoneTracker.setGpsLocationListener(new PhoneTracker.GpsLocationListener() {

  @Override
  public void onLocationReceived(long timestamp, Location location) {

}
 
}
);
  • Cell
// Set the listener for cell scans phoneTracker.setCellScanListener(new PhoneTracker.CellScanListener() {

  @Override
  @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
  public void onCellInfoReceived(long timestamp, List<CellInfo> cells) {

}

@Override
  @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
  public void onNeighborCellReceived(long timestamp, List<NeighboringCellInfo> cells) {

}
 
}
);

Note if your application target from API 17 to 25 you don't need override the onNeighborCellReceived(...). For this I created an adapter class PhoneTracker.CellScanAdapter to override only the method you are interested:

phoneTracker.setCellScanListener(new PhoneTracker.CellScanAdapter() {

  @Override
  @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
  public void onCellInfoReceived(long timestamp, List<CellInfo> cells) {

}
 
}
);

License

Copyright 2017 newhouse (nhitbh at gmail dot com)  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

A changelog library for Android.

A simplelibrary to shorten long numbers.

For example:

  • 10.000 -> 10.0K
  • 10.000.000 -> 10.0M

A cool search view animation library.

Material design Bottom Navigation implementation.

This library is intended to help capture signatures with an easily-configurable style.

Proxy Cache Manager annotation that helps you to cache your repository method calls.

Features:

  • Fast implementation for each repository method.
  • Provides simple methods like isCached or isExpired.
  • Distinguish between different calls of the same method.
  • Provides the ability to store content on disk without the need of a database.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes