Ionic provide you a framework to quickly implement with your web development skills a nice native application. Although, not everything is provided in the framework and if you want to get native features working with your application you will need to add some Cordova plugins to your project.

q5Jmvu10tV 150x150

Apache Cordova is a Mobile application development framework that provides access to some of the API usually accessible throw the specific development platform for Android, iOs and Windows Phone apps throw a Javascript SDK to write apps using HTML5, CSS3 and plain Javascript.

Once you know what Apache Cordova know you can find interesting the following project.

ngcordova 150x150

ngCordova gives you simple AngularJS wrappers for a massive amount of Cordova plugins. Check out the list below for all of the available plugins, and create an issue for a new request.

ngCordova provides wrappers for the Cordova plugins in order to be used in your AngularJS application. You can find all the documentation and examples of use of the Cordova compatible plugins.

ngCordova Plugins by the Ionic Framework Team 300x248 The ngCordova project provides a full list of all compatible plugins and documentation and examples of use.

But while you are developing your Ionic app you aren't limited to this list of plugins. You can use any existing Cordova plugin and install it with the command line using the ionic cordova plugin command.

Cordova plugins used in our Ionic app

cordova-plugin-calendar 4.5.5 "Calendar"

This plugin integrates the Calendar functionality of your device into your app. In our case, we use it to send the tasks in the todos lists to the calendar in order to manage Calendar appointments with the list item information like title, description and due date. For sure you can send it to the calendar even it doesn't have set a due date, but when you are creating the event in the calendar you should set it manually. To enable in the app the send to calendar feature you have to set in the setup the Pro configuration.

Install the plugin with the following command

ionic cordova plugin add https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin.git --save

cordova-plugin-crosswalk-webview 2.3.0 "Crosswalk WebView Engine"

By default Ionic builds your app in the top of the WebView engine native in your phone. This allows to build everything with a light app that only will include your HTML, Javascript and CSS code files (and the included with the framework). But there is a problem here. Each device has its own and particular version of the Android Webview engine and nothing assures you that your code will be rendered in the same way, specially in older devices. So, including this plugin enforces your app to use an included Webview engine, surely based on a newer version of Chrome, and it will be encharged to render the app in the same way for any device. You should be careful because this has a space cost.

Your light application only including some html, javascript and css files will be fattened including their own rendering engine.

ionic cordova plugin add cordova-plugin-crosswalk-webview --save

cordova-plugin-googleplus 5.1.1 "Google SignIn"

We wanted to include an standard Google author to make easy the procedure of sign-up for the potential users. Firebase provides a social author integration but, as you are developing an Android app you want to be nicely integrated with the device, so if you want to integrate it wiht the existing accounts registered in the device you should install this plugin. Despite the use of the googleplus term in the plugin name it will author with your Google account even if you're not in the failed social network of Google. The plugin has a good documentation about how to install and use it and how to get the key needed for the Google Authentication API. But, as we are using Firebase we can use it to require the API key directly from the Firebase Console instead of create it manually as the documentation of the plugin explains.

Firebase 21 19 23 150x150

Add another app to your Firebase project

Firebase 21 19 33 150x150

Choose the Android app option

You have to access your Firebase Console Dashboard, and once inside the project, you can add another application. In this case you should specify the Android option.

Firebase 21 19 47

Create the android package name, application alias and add a SHA-1 debug key

Then, the next step requires you to register your Android application by setting its package name and alias. This package name is very important because you need to write it in the config.xml file located in the root folder of your project. You should change the attribute id in the widget element of the config.xml element.

config xml strikethru Change the id attribute from the widget element to your package name.

It also asks you to set an SHA-1 debug key, needed in the case of the use of the authentication API. In order to get this SHA-1 key you need to generate it. In this link Google provides a guide of how to get it https://developers.google.com/drive/android/auth.

TL;DR If you have the keytool command installed you can get it by running this command pointing to your project keystore.

keytool -exportcert -alias androiddebugkey -keystore <var>path-to-debug-or-production-keystore</var> -list -v

The SHA-1 key generated is the one you should specify in this Firebase dialog.

In our application, in the Auth service author function first we try to author via this plugin. If the Google author via the plugin is not available the code failsback to the Firebase author procedure provided with the Firebase Web SDK, the used for Javascript applications.

function author(){
        $cordovaGooglePlus.author({
            'webClientId': '219119179196-6bab0a9s9h2kef3bidt31n6ml2iaatq4.apps.googleusercontent.com',
            'offline': true
          })
          .then(function(userData) {

            var provider = new firebase.auth.GoogleAuthProvider().credential(userData.idToken);
            auth.signInWithCredential(provider)
              .then((success) =&gt; {
                console.log("Logged in via firebase.auth().signInWithCredential(provider)");
                currentUser = sucess;
                $state.go("tab.livelist", {}, {
                  location: "replace"
                });
              })
              .catch((error) =&gt; {
                console.log("Firebase failure: " + JSON.stringify(error));
              });

          }, function(err) {
            console.log('error');
            console.log(err);
            if (err == "cordova_not_available") {
              var provider = new firebase.auth.GoogleAuthProvider();
              auth.signInWithPopup(provider).then(function(result) {
                console.log("Logged in via firebase.auth.GoogleAuthProvider()");
                currentUser = result.user;
                $state.go("tab.livelist", {}, {
                  location: "replace"
                });
              }).catch(function(error) {
                console.error("Authentication failed:", error);
              });
            }
          });
      }

Install the plugin with the following command line.

ionic cordova plugin add cordova-plugin-googleplus --save
ionic cordova prepare