Back to project page android-gear.
The source code is released under:
MIT License
If you think the Android project android-gear 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.androidgear.samples; //from w ww. j a v a2 s . c o m import com.androidgear.core.AbstractAndroidGearActivity; import com.androidgear.core.Game; import com.androidgear.samples.core.SampleGame; public class SampleGameActivity extends AbstractAndroidGearActivity { @Override public Game getGame() { return new SampleGame(); } }