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; /*from w w w. j a v a 2s . c om*/ /** * Holder for state change event reporting. */ public class StateChange { String from; String to; public StateChange(Object from, Object to) { this.from = from.toString(); this.to = to.toString(); } @Override public String toString() { return from + " to " + to; } }