Book Image

Expert Android Programming

Book Image

Expert Android Programming

Overview of this book

Android O brings a number of important changes for the users as well as the developers. If you want to create smart android applications which are fast, lightweight and also highly efficient then this is the book that will solve all your problems. You will create a complex enterprise grade app in this book. You will get a quick refresher of the latest android SDK and how to configure your development environment. Then you will move onto creating app layouts, component and module building, creating smart and efficient UIs. The most important part of a modern day app is how real time they are. With this book, you will create a smooth back-end for your app, ensure dynamic and real time communication between different app layers. As we move on, you will learn to leverage the different Android APIs and create an efficient SQLite data layer for your apps. You will implement effective testing techniques to make your app reliable and robust and finally you will learn to deploy it efficiently. The multiple stages of android development will also be simplified by giving you an industry standard set of best practices.
Table of Contents (17 chapters)
10
Building Restaurant finder

Preconfiguring to automatically Sign Your APK

Android Studio allows you to configure your project in such a way that you can sign your release APK automatically during the build process, by creating a signing configuration and assigning it to your release build type. To create a signing configuration and assign it to your release build type, follow these steps:

  1. In the Project window, right-click on your app and click on Open Module Settings:
Pre Configuration of Automatic Signing Procedure
  1. On the Project Structure window, under Modules in the left panel, select the module you would like to sign:
The preconfiguration of Automatic Signing Procedure
  1. Next, click on the Signing tab and then click on add (+) to add a key.
  2. Select your key store file, enter a name for this signing configuration, and enter the required information:
The preconfiguration of Automatic Signing Procedure...