How to convert a website into android app in just 5 min?
Hi Guys... Here we are going to learn how to convert a fully functional website into android app in just 5 minutes. Steps: Step1: Create a android studio Project Step2: Copy the source code from these blog to android studio For example: Xml code in Xml file Java code in Java file Source Code: Xml code: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <WebView android:id="@+id/myWebView" android:layout_width="match_parent" android:layout_height="match_pare...