mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2024-11-13 19:48:38 -05:00
19 lines
308 B
Java
19 lines
308 B
Java
package org.bspeice.minimalbible;
|
|
|
|
import android.app.Application;
|
|
import android.content.Context;
|
|
|
|
public class MinimalBible extends Application {
|
|
|
|
private static MinimalBible instance;
|
|
|
|
public MinimalBible() {
|
|
instance = this;
|
|
}
|
|
|
|
public static Context getAppContext() {
|
|
return instance;
|
|
}
|
|
|
|
}
|