KB: Load Kiosk URL via intent broadcast
From v2.5.9 and up you can broadcast an intent from other applications to request Kiosk Browser to load another URL.
Intent intent = new Intent("com.procoit.kioskbrowser.INTENT_BROWSABLE_EXT");
intent.putExtra("url", "http://developer.android.com");
sendBroadcast(intent);
adb shell am broadcast -a com.procoit.kioskbrowser.INTENT_BROWSABLE_EXT --es url "http://developer.android.com"
Updated on: 04/08/2020
Thank you!