1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-03 02:06:21 +02:00

add System.exit(0) to quit() to ensure exit

This commit is contained in:
vanous 2021-07-20 20:59:58 +02:00
parent 2015026e36
commit 383e096248

View File

@ -146,6 +146,7 @@ public class GBApplication extends Application {
Intent quitIntent = new Intent(GBApplication.ACTION_QUIT);
LocalBroadcastManager.getInstance(context).sendBroadcast(quitIntent);
GBApplication.deviceService().quit();
System.exit(0);
}
public GBApplication() {