Back to project page kitty-compass.
The source code is released under:
Apache License
If you think the Android project kitty-compass 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.google.android.glass.sample.kittycompass; /* w ww . j a va 2 s.co m*/ import android.app.Activity; import android.content.Intent; public class StartCompassActivity extends Activity { @Override protected void onResume() { super.onResume(); startService(new Intent(this, CompassService.class)); finish(); } }