Back to project page cmcc.
The source code is released under:
Apache License
If you think the Android project cmcc 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 net.gongmingqm10.cmcc.activity; //from w w w . ja va 2s . c om import android.app.Application; import cn.jpush.android.api.JPushInterface; public class CMCCApplication extends Application { @Override public void onCreate() { super.onCreate(); JPushInterface.setDebugMode(true); JPushInterface.init(this); } }