Back to project page detect-me-android.
The source code is released under:
MIT License
If you think the Android project detect-me-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.contexthub.detectme; //from w w w . j a va 2 s .c o m import android.app.Application; import com.chaione.contexthub.sdk.ContextHub; /** * Created by andy on 10/15/14. */ public class DetectMeApp extends Application { @Override public void onCreate() { super.onCreate(); ContextHub.init(this, "YOUR-APP-ID-HERE"); } }