For using this app you need to have android studio installed on your computer and also you need to have java jdk installed on your computer
Compiling instructions are listed on the bottom of this page
This guide explains how to manually change the key properties of your application.
To change the display name of your app (what users see under the icon):
app/src/main/res/values/strings.xml.<string name="app_name">My HTML App</string>.To change the app icon:
my_icon.png) in the app/src/main/res/drawable
folder.app/src/main/AndroidManifest.xml.<application> tag.android:icon and android:roundIcon attributes to match your file
name:
android:icon="@drawable/my_icon"
android:roundIcon="@drawable/my_icon"
This connects your app to the Play Store and identifies it uniquely.
app/build.gradle.defaultConfig block.applicationId value:
applicationId "com.yourcompany.appname"
To update the version when releasing updates:
app/build.gradle.defaultConfig:
versionCode 2
versionName "1.1"
After making any of these changes, sync your project with Gradle (if using Android Studio) or rebuild the app for the changes to take effect.
Once you are happy with your changes, here is how to build the app:
AndroidHtmlApp folder.app/build/outputs/apk/debug/.If you have the Android SDK installed:
AndroidHtmlApp folder.gradlew.bat assembleDebug./gradlew assembleDebugapp/build/outputs/apk/debug/app-debug.apk.