summaryrefslogtreecommitdiff
path: root/app/src/notFatweb
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2022-07-18 21:34:59 +0200
committercyBerta <cyberta@riseup.net>2022-07-18 21:44:51 +0200
commit12797d89623adb34425cea6cb7de1057083d1cf7 (patch)
treeff51985da090cb3b401a1c81c2b5d8d3ed57f4c0 /app/src/notFatweb
parent8da92b90abaa39c1c66e305c61907eadb0ec1269 (diff)
add missing empty DownloadServiceCommand method for non-web-downloaded apks
Diffstat (limited to 'app/src/notFatweb')
-rw-r--r--app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java8
1 files changed, 8 insertions, 0 deletions
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.
+ }
}