Book Image

App Inventor 2 Essentials

Book Image

App Inventor 2 Essentials

Overview of this book

App Inventor 2 will take you on a journey of mobile app development. We begin by introducing you to the functionalities of App Inventor and giving you an idea about the types of apps you can develop using it. We walk you through the technical set up so you can take advantage of the interactive development environment (live testing). You will get hands-on, practical experience building three different apps using tutorials. Along the way, you will learn computer science principles as well as tips to help you prepare for the creative process of building an app from scratch. By the end of the journey, you will learn how to package an app and deploy it to app markets. App Inventor 2 Essentials prepares you to amass a resource of skills, knowledge and experience to become a mobile app developer
Table of Contents (15 chapters)
App Inventor 2 Essentials
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
Index

Setting up Google Authentication


Fusion Tables is software that Google has designed. For various security- and privacy-related issues, Google only wants verified software to send/receive data to/from Fusion Tables. Hence, we need to establish our identity before our Event App can exchange data with Google Fusion Tables. In this section, we will describe how to create Google service-level authentication to establish this credential.

To establish the service-level authentication credentials, follow these instructions:

  1. Go to https://console.developers.google.com/ and log in with your Google account if necessary. On the Getting started page, click on the Use Google APIs button as shown in the following screenshot:

    The acronym API stands for Application Programming Interface. To describe it in a very simple manner, an API defines a way for computers to interact with websites (essentially for software programs to interact). Developers at companies like Twitter, Facebook, and Google create protocols...