#46 add missing GBApplication

live-sensor-data
cpfeiffer 2015-05-01 09:36:10 +02:00
parent f143c9ec54
commit 3e79269d43
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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;
}
}