Book Image

Mastering Android Wear Application Development

By : Siddique Hameed, Javeed Chida
Book Image

Mastering Android Wear Application Development

By: Siddique Hameed, Javeed Chida

Overview of this book

Wearable technology is the future of mobile devices. It looks set to be a breakthrough technology, just like the iPad was before it. With the Apple Watch being widely regarded as a success, all eyes are now on Google to provide a similar device for its users. Keep your skills ahead of the competition and be one of the first to fully understand this powerful new trend. This book will give you a very solid understanding of the philosophy, thought process, development details, and methodologies involved in building well-designed, robust Android Wear applications. We cover the advantages and disadvantages of the wearable computing paradigm and provide a good foundational knowledge for you to build practical, real-world wearable apps. You will learn about the various tools, platforms, libraries, SDKs, and technology needed to build Android Wear apps. By the end of the book, you will be an expert in building Android wearable apps.
Table of Contents (18 chapters)
Mastering Android Wear Application Development
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Let's build an Android Wear app


So far, we've been looking at the Skeleton wearable sample app that we cloned from Google's GitHub repository. We familiarized ourselves with how the skeleton app was structured and got some ideas of how the code and components are structured.

Now, it's time for us to build our own Android Wear app. We'll be using Android Studio to create this app from scratch.

From the Android Studio welcome screen, click on Start a new Android Studio project option as shown in the following screenshot:

Configure the project with an application name, domain, and package name that suits your system settings:

In the Target Android Devices screen, uncheck the Phone and Tablet option and make sure you select the Wear option. Android Studio will automatically select the safest minimum SDK needed to create the app based on the SDKs and system images you have installed on the system.

We're going to the default settings that were selected by Android Studio for this app:

After you...