WHAT’S IN THIS CHAPTER?
WROX.COM CODE DOWNLOADS FOR THIS CHAPTER
The wrox.com code downloads for this chapter are found at www.wrox.com/go/androidwearables
on the Download Code tab. The code is in the Chapter 3 download and the filename is Listing_3-1.gradle
.
Android Wear is Google’s attempt to bring order to a market that historically has been fairly scattered. Looking at recent releases in the smartwatch and wearables category for the mass market, you’ll notice that most device manufacturers, such as Samsung and Sony, use proprietary tools and libraries. This puts third-party developers like you and me in an awkward position. We have to either support just one system, such as Samsung’s Tizen, or build more-complex applications that use SDKs from multiple device vendors.
Most Android Wear devices are designed as an extension to a standard Android smartphone, providing new forms of interaction and more direct feedback from your Wear-enabled Android apps by using specially designed notifications and apps.
Before you can start developing for Android Wear you need to make sure your development environment is set up to support it. The following are requirements for developing for Android Wear:
You should also go ahead and install the appropriate Android Wear System Image, in most cases this is the Intel x86 Atom, and create an emulator. A good practice is creating at least two emulators, one for the rectangular screen and one of the circular screen.
Android Wear comes in two screen configurations, rectangular and round. You should set up one emulator for each configuration. Go ahead and create an emulator for both the Round screen (Figure 3.1) and the Rectangular screen (Figure 3.2).
FIGURE 3.1 Round Android Wear emulator
FIGURE 3.2 Square Android Wear emulator
Because the Android Wear device is an extension to your normal Android device, you also need a connection to your normal phone to receive notifications. Google’s Android Wear App connects to your Emulator.
You can download the Android Wear App from https://play.google.com/store/apps/details?id=com.google.android.wearable.app
.
After you’ve installed the Android Wear App, you see the screen shown in Figure 3.3.
FIGURE 3.3 The Android Wear App screen
The Android Wear App works as a bridge between your real Android device (or a second emulator). Setting up a connection between your real Android device and the Wear emulator is easy, but you need some familiarity with the Android Debug Bridge (ADB).
To set up the connection, follow these steps:
FIGURE 3.4 Successful connection between the Wear emulator and an Android device
There are currently two different Android Wear devices available: the LG G Watch and the Samsung Gear Live, and they both use square screens. Motorola has announced a round watch which will be available soon.
To work with either of these devices during development you first need to pair the Wear device to your Android Phone. But first, lets become a developer!
Now it’s time to connect your Wear device to your development environment; when you connect your Wear device to your computer you’ll get the typical “Allow USB Debugging” dialog, but you’ll get it on the phone instead of the Wear device, as shown in Figure 3.5.
FIGURE 3.5 Allow USB Debugging on Wear
With the Wear connected and having allowed USB debugging for your computer, you’re all set! Just remember to select the correct device when uploading apps from Android Studio—you shouldn’t install mobile apps on the Wear, or Wear apps on the mobile.
If you prefer to limit the amount of cables on your desk you can choose to debug over Bluetooth. Enable the setting for Bluetooth debugging in your Wear companion app.
Now that your Android device and your Wear emulator are connected, your next step is diving straight into development.
Download the sample applications for Android 4.4W using the SDK Manager. Let’s install one of them to test the connection using the following steps:
If everything goes well, you should see the view shown in Figure 3.6.
FIGURE 3.6 Recipe Assistant
Select one of the recipes. You should see the walk-through start on your Wear emulator. Figure 3.7 shows the first step in the beef brisket chili recipe.
FIGURE 3.7 Steps 1 through 3 of preparing beef brisket chili
A common misconception when developing Wear apps is that you should install apps straight to the Wear device. This is not the intended workflow when developing for Wear. You should avoid installing apps straight to the emulator, because the result may cause undocumented behavior.
Installing apps directly on the Wear device is only available when developing through the ADB tool. If you want to distribute an app for Wear devices on Google Play, you will need to package this inside a standard app.
When installing an app with a wearable component from Google Play, the app is automatically pushed from your phone to the Wear device. For this to work you need to package the application properly before you release it on Google Play. The following steps quickly describe how to package your Wear app for Google Play:
build.gradle
file and add the wearApp
to your dependencies, if it’s not already added (code filename: Listing_3-1.gradle
).This chapter has introduced the Android Wear system, its ideas, and its position within the Android ecosystem. You also kick-started your development by creating a Wear emulator and connected it to the Android Wear App. If you have a real Wear device, you probably also tested connecting that device to your real phone. You finished this chapter by installing your first Android Wear-enabled app to your phone and making sure it connected to your emulator properly. Finally, you looked at special considerations for distributing Wear-enabled applications on Google Play.
Coming up in Chapter 4, you’ll learn about building notifications tailored specifically for Android Wear.