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"
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"
Published on: 04 / 05 / 2018