How do I connect webapp with android app?

Viewed 40

So for a personal project I'm building a task management webapp using laravel framework, I've hooked it up to hosting so I can use it any time. but for the future I want to improve the application so that it can be used anywhere with a smartphone, I want to make the application but with an android application based. so my question, what do i need to make android app? can i connect my old webapp with the android app? or do I need something new so that both applications can work with the same database?

1 Answers

You would either need to create a native android app and use Laravel api endpoints, or you can create an app that is basically just a webview that loads your app url.

Related