Android Open Source - storage-android Storage App






From Project

Back to project page storage-android.

License

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.

Java Source Code

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");
    }
}




Java Source Code List

com.contexthub.storageapp.ApplicationTest.java
com.contexthub.storageapp.MainActivity.java
com.contexthub.storageapp.StorageApp.java
com.contexthub.storageapp.fragments.AboutFragment.java
com.contexthub.storageapp.fragments.EditVaultItemFragment.java
com.contexthub.storageapp.fragments.VaultItemListFragment.java
com.contexthub.storageapp.models.PersonComparator.java
com.contexthub.storageapp.models.Person.java