[Vuejs]-Which are the steps to follow for building an APK?

0👍

Easier way is to first import your project to Android studio

To import

  1. Open Android Studio
  2. Open the platform/android folder of your project in Android Studio

To Build

  1. Navigate from the toolbar Build -> Generate Signed Apk
  2. Create your Key file (you will need to save this key file for future updates)
  3. Select release and V1 and V2 signature variants and off you go..

Don’t forget that you will need to first build your Cordova project
using cordova build android command before executing the above
steps.

You can find detailed documentation on from the Cordova Official Documentation.

0👍

you can read this topic

it’s very useful for building APK’s and sign them

-1👍

Steps to build debug APK for testing:

1). Add Android Platform ionic cordova platform add android

2). Connect your phone(enable Developer Mode from settings) and run ionic cordova run android // this will build and install directly in your device.

3). When app starts open Chrome and inspect your application and debug it.

Leave a comment