3

I'm new developer in QPython (experienced with python), I want to open an url with user's default browser.

I tried AndroidBrowser().open("...") but, to my surprise, I got Segmentation Fault! So I said OK, let's try to open it manually as activity, then I tried to import jnius and got Segmentation Fault as well.

Any suggestion how to fix it or other ways to open the browser?

jww
  • 97,681
  • 90
  • 411
  • 885
Ori Seri
  • 917
  • 1
  • 6
  • 14

2 Answers2

1

Apparently, this happens just in console mode, so in other QPython mods it works fine.

Ori Seri
  • 917
  • 1
  • 6
  • 14
-1
import androidhelper
droid = androidhelper.Android()
droid.view('……')
Pang
  • 9,564
  • 146
  • 81
  • 122