It makes us less flexible when those views / intents get changed. We might have to carry around backward compatible code for a while. But lets try. Browsers to support are: * Firefox (org.mozilla.firefox, org.mozilla.firefox_beta, org.mozilla.fenix, org.mozilla.fenix.debug) * GeckoView_Example (org.mozilla.geckoview_example) * RefBrowser (org.mozilla.reference.browser) The activity that will work for all the browsers is: `org.mozilla.fenix.IntentReceiverActivity`. Intents to use: ``` "androidIntentArguments": [ "-a", "android.intent.action.VIEW", "-d", "about:blank", ] ```
Bug 1700290 Comment 11 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
It makes us less flexible when those views / intents get changed. We might have to carry around backward compatible code for a while. But lets try. Browsers to support are: * Firefox (org.mozilla.firefox, org.mozilla.firefox_beta, org.mozilla.fenix, org.mozilla.fenix.debug) * GeckoView_Example (org.mozilla.geckoview_example) * RefBrowser (org.mozilla.reference.browser) The activity that will work for all the browsers is: `org.mozilla.fenix.IntentReceiverActivity`. Only for geckoview_example the default activity (.GeckoViewActivity) can be used. Intents to use: ``` "androidIntentArguments": [ "-a", "android.intent.action.VIEW", "-d", "about:blank", ] ```
It makes us less flexible when those views / intents get changed. We might have to carry around backward compatible code for a while. But lets try. Browsers to support are: * Firefox (org.mozilla.firefox, org.mozilla.firefox_beta, org.mozilla.fenix, org.mozilla.fenix.debug) * GeckoView_Example (org.mozilla.geckoview_example) * RefBrowser (org.mozilla.reference.browser) The activity that will work for all the browsers is: `org.mozilla.fenix.IntentReceiverActivity`. Only for geckoview_example the default activity (.GeckoViewActivity) has to be used. Intents to use: ``` "androidIntentArguments": [ "-a", "android.intent.action.VIEW", "-d", "about:blank", ] ```