Open a Safari browser from Telerik AppBuilder

84 views Asked by At

Telerik AppBuilder is using it's own "webview", but Apple store cannot accepts donations through app unless it's done thought Safari browser... Is there any way to open Safari browser inside App? Thanks

2

There are 2 answers

0
Rob Lauer On BEST ANSWER

You should be able to use the InAppBrowser plugin, but use the target of "_system". See the docs for more details: https://github.com/apache/cordova-plugin-inappbrowser/blob/master/doc/index.md

0
Rohit Vipin Mathews On

Use the second argument "_system" to open the link in the default browser. Omit it to open with in the app.

window.open("www.google.com", '_system');