Back to project page storage-android.
The source code is released under:
MIT License
If you think the Android project storage-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.storageapp; //w ww . j av a 2 s .c o m import android.app.Application; import com.chaione.contexthub.sdk.ContextHub; /** * Created by andy on 10/13/14. */ public class StorageApp extends Application { @Override public void onCreate() { super.onCreate(); // Register the app id of the application you created on https://app.contexthub.com ContextHub.init(this, "YOUR-APP-ID-HERE"); } }