sunny
sunny

Reputation: 748

Kivy - Create app using a website url

I have a responsive website www.xyz.com.

Is it possible to create an android app using Kivy (apk) and have the url browsing experience in an app like environment.

Thanks in advance

Upvotes: 0

Views: 4117

Answers (2)

Paddy
Paddy

Reputation: 151

You could technically do it using Kivy like https://github.com/kivy/kivy/wiki/Android-native-embedded-browser . However, using Kivy here is not a great idea considering that it can be done easily using the webview from Android Studio or equivalent.

Upvotes: 1

webdeb
webdeb

Reputation: 13211

Hmm, kivy is a framework for building cross platform Apps. You can re-build your website with kivy. But in your case, its a huge overhead, because you can just put the html of your website in a Web View and run it like an App.

You can doit easily with cordova

Cheers

Upvotes: 0

Related Questions