From 12797d89623adb34425cea6cb7de1057083d1cf7 Mon Sep 17 00:00:00 2001 From: cyBerta Date: Mon, 18 Jul 2022 21:34:59 +0200 Subject: add missing empty DownloadServiceCommand method for non-web-downloaded apks --- .../se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/src/notFatweb') diff --git a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java index 157f04fe..02a830ca 100644 --- a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java +++ b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java @@ -1,6 +1,10 @@ package se.leap.bitmaskclient.appUpdate; import android.content.Context; +import android.os.Bundle; + +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; /** * DownloadServiceCommand is only implemented in Fatweb builds @@ -16,4 +20,8 @@ public class DownloadServiceCommand { public static void execute(Context context, String action) { // DO NOTHING. } + + public static void execute(@NonNull Context context, @NonNull String action, @Nullable Bundle parameters) { + // DO NOTHING. + } } -- cgit v1.2.3