All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.andromedaioc.android.AndromedaApplication Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.android;

import android.app.Application;
import net.sf.andromedaioc.context.AndromedaContext;

/**
 * Performs andromeda context initialisation on application start
 *
 * @author Alexey Mitrov
 */
public class AndromedaApplication extends Application implements AndromedaContextHolder {

    private AndromedaContext andromedaContext;

    @Override
    public void onCreate() {
        super.onCreate();
        andromedaContext = Andromeda.createAndromedaContext(this);
    }

    public AndromedaContext getAndromedaContext() {
        return andromedaContext;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy