Top 1 Apps Similar to MotoTracking

USSD Lib 1.0.0
hitman
This application allow user to to query USSD code (such assend*112# to query post-paid billing of Mobifone/Vietnam) tothenetwork and intercept the response (prevent displaying ofdefaultUSSD response dialog of Android).It's used as a library forCallLimit:https://play.google.com/store/apps/details?id=com.hit.calllimit-------------------------------------------------For developer who want to do the USSD intercepting as above:1. Install this app2. Restart the phone3. Send a broadcast intent:Intent ussdIntent = new Intent("SEND_UC_USSD_WITH_RESULT");ussdIntent.putExtra(USSD_NUMBER, number);4. Register a receiver withaction:"com.hit.ussdlib.service.USSD_RESPONSE_ACTION"5. Get the response: String response=intent.getStringExtra("com.hit.ussdlib.service.message");-------------------------------------------------