From d953c645e96aea092952653adb92280fe4c225f8 Mon Sep 17 00:00:00 2001 From: Christof Arnosti Date: Sat, 14 Mar 2020 18:17:05 +0100 Subject: usb-serial-for-android: React to usb "permit granted" intent (stub) When a user is downloading from a DC for the first time (without using the "usb device connected" popup), the user is requested to grant permission to use the USB device. This is done asynchronously, thus the download is aborted. To be more user-friendly, we now react to the intent with the "usb granted" result. The plan here is to start the download again. Signed-off-by: Christof Arnosti Signed-off-by: Dirk Hohndel --- .../mobile/SubsurfaceMobileActivity.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'android-mobile/src') diff --git a/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java b/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java index c909210f2..52f401b71 100644 --- a/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java +++ b/android-mobile/src/org/subsurfacedivelog/mobile/SubsurfaceMobileActivity.java @@ -50,6 +50,11 @@ public class SubsurfaceMobileActivity extends QtActivity isIntentPending = true; } } + + // Register the usb permission intent filter. + IntentFilter filter = new IntentFilter("org.subsurfacedivelog.mobile.USB_PERMISSION"); + registerReceiver(usbReceiver, filter); + } // onCreate // if we are opened from other apps: @@ -104,6 +109,23 @@ public class SubsurfaceMobileActivity extends QtActivity } // processIntent + private final BroadcastReceiver usbReceiver = new BroadcastReceiver() { + public void onReceive(Context context, Intent intent) { + String action = intent.getAction(); + if ("org.subsurfacedivelog.mobile.USB_PERMISSION".equals(action)) { + synchronized (this) { + if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) { + Log.d(TAG, "USB device permission granted"); + // Stub: press the download button here :) + } + else { + Log.d(TAG, "USB device permission granted"); + } + } + } + } + }; + public static Context getAppContext() { return appContext; -- cgit v1.2.3-70-g09d2