This page is written to help developers to go from the source code of an ionic application to an android one, with this in mind, topics such as: environment, commands, modifications,… are covered.
This document assumes that the reader has already:
-
Source code of an ionic 4 application and wants to build it on an android device,
-
A working installation of Node.js
-
An Ionic CLI installed and up-to-date.
-
Android Studio and Android SDK.
When a native application is being dessigned, sometimes, functionalities that uses camera, geolocation, push notification, … are requested. To resolve these requests, Capacitor can be used.
In general terms, Capacitor wraps apps made with Ionic (HTML, SCSS, Typescript) into WebViews that can be displayed in native applications (Android, IOS) and allows the developer to access native functionalities like the ones said before.
Installing capacitor is as easy as installing any node module, just a few commands have to be run in a console:
-
cd name-of-ionic-4-app
-
npm install --save @capacitor/core @capacitor/cli
Then, it is necessary to initialize capacitor with some information: app id, name of the app and the directory where your app is stored. To fill this information, run:
-
npx cap init
Throughout the development process, usually back-end and front-end are on a local computer, so it’s a common practice to have diferent configuration files for each environment (commonly production and development). Ionic 4 uses an angular.json file to store those configurations and some rules to be applied.
If a back-end is hosted on http://localhost:8081, and that direction is used in every environment, the application built for android will not work because computer and device do not have the same localhost. Fortunately, different configurations can be defined.
Android Studio uses 10.0.0.2 as alias for 127.0.0.1 (computer’s localhost) so adding http//10.0.0.2:8081 in a new environment file and modifying angular.json accordingly, will make possible connect front-end and back-end.
"build": { ... "configurations": { ... "android": { "fileReplacements": [ { "replace": "src/environments/environment.ts", "with": "src/environments/environment.android.ts" } ] }, } }
Once configured, it is necessary to build the Ionic 4 app using this new configuration:
-
ionic build --configuration=android
The next commands copy the build application on a folder named android and open android studio.
-
npx cap add android
-
npx cap copy
-
npx cap open android
Once Android Studio is opened, follow these steps:
-
Click on "Build" → Make project.
-
Click on "Build" → Make Module 'app' (default name).
-
Click on" Build" → Build Bundle(s) / APK(s) → Build APK(s).
-
Click on run and choose a device.
If there are no devices available, a new one can be created:
-
Click on "Create new device"
-
Select hardware and click "Next". For example: Phone → Nexus 5X.
-
Download a system image.
-
Click on download.
-
Wait until the installation finished and then click "Finish".
-
Click "Next".
-
-
Verify configuration (default configuration should be enough) and click "Next".
-
Check that the new device is created correctly.
To test on a real android device, an easy aproach to comunicate a smartphone (front-end) and computer (back-end) is to configure a Wi-fi hotspot and connect the computer to it. A guide about this process can be found at https://support.google.com/nexus/answer/9059108?hl=en
Once connected, run ipconfig
on a console if you are using windows or ifconfig
on a linux machine to get the IP address of your machine’s Wireless LAN adapter Wi-fi.
This obtained IP must be used instead of "localhost" or "10.0.2.2" at environment.android.ts.
After this configuration, follow the build steps in "From ionic 4 to Android project" and the first three steps in "From Android project to emulated device".
To send the built application to a device, you can connect computer and mobile through USB, but first, it is necessary to unlock developer options.
-
Open "Settings" and go to "System".
-
Click on "About".
-
Click "Build number" seven times to unlock developer options.
-
Go to "System" again an then to "Developer options"
-
Check that the options are "On".
-
Check that "USB debugging" is activated.
After this, do the step four in "From Android project to emulated device" and choose the connected smartphone.
If everything goes correctly, the Ionic 4 application will be ready to be tested.