Back to project page mmx-starter-android.
The source code is released under:
Apache License
If you think the Android project mmx-starter-android 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.magnet.demo.mmx.starter; /*from w ww . j a v a 2 s . co m*/ import com.magnet.mmx.MMXClient; import android.app.Application; public class MyApplication extends Application { public void onCreate() { super.onCreate(); MMXClient.registerWakeupListener(this, MyWakeupListener.class); //MMXClient.setWakeupInterval(this, 60 * 1000); } }