Skip to content

Instantly share code, notes, and snippets.

@Xifax
Created December 2, 2016 10:31
Show Gist options
  • Save Xifax/fff279903c460ce53e5f5de9dff534e3 to your computer and use it in GitHub Desktop.
Save Xifax/fff279903c460ce53e5f5de9dff534e3 to your computer and use it in GitHub Desktop.
SugarORM shamanisms
/**
* Extending SugarApp with transparent initialization
*/
public class TestApp extends SugarApp {
@Override
public void onCreate() {
super.onCreate();
SugarContext.init(this);
}
@Override
public void onTerminate() {
SugarContext.terminate();
super.onTerminate();
}
}
/*
NB: in Manifest,
<application
android:name=".TestApp">
</application>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment