mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
17 lines
337 B
Java
17 lines
337 B
Java
|
package nodomain.freeyourgadget.gadgetbridge;
|
||
|
|
||
|
import android.app.Application;
|
||
|
import android.content.Context;
|
||
|
|
||
|
public class GBApplication extends Application {
|
||
|
private static GBApplication context;
|
||
|
|
||
|
public GBApplication() {
|
||
|
context = this;
|
||
|
}
|
||
|
|
||
|
public static Context getContext() {
|
||
|
return context;
|
||
|
}
|
||
|
}
|