Recent content by senglory

  1. S

    Android 6 - how to open Firefox from my app?

    I tried my app both with FF49 and with the latest one - the same effect, empty tab in FF. Meanwhile, Android 4.4 and 5.1 don't have such issue and open FF with my url.
  2. S

    Android 6 - how to open Firefox from my app?

    In Android 4 & 5 the following code worked perfectly: void shareImageWithUri(Uri uri) { Intent intent3 = new Intent(Intent.ACTION_MAIN, null); intent3.addCategory(Intent.CATEGORY_LAUNCHER); intent3.setComponent(new ComponentName("org.mozilla.firefox"...