Back to project page yousense-android-tracker.
The source code is released under:
Energy-efficent motion and location tracker for Android. Based on Mattias's power and tracking work. I plan to release it as GPL, once I have a paper published that goes with it. Might also release i...
If you think the Android project yousense-android-tracker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.linnap.locationtracker.wifi; //from w w w. j av a2 s . com public class ScanStartedData { boolean failed; public ScanStartedData(boolean failed) { this.failed = failed; } @Override public String toString() { return "scan " + (failed ? "failed" : "succeeded"); } }