Skip to content

Instantly share code, notes, and snippets.

@eneim
Created July 24, 2015 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eneim/e2a923313b4a41aee304 to your computer and use it in GitHub Desktop.
Save eneim/e2a923313b4a41aee304 to your computer and use it in GitHub Desktop.
Sample Application class
package com.example.app;
import android.app.Application;
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
AndroidThreeTen.init(this); // init the lib here
}
}
@Aldiirhab1504
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment