Reputation: 1133
Recently I went through http://developer.android.com/wear/index.html and play with sample apps like AndroidWearChat, AndroidWearNotificationTest,AndroidWearRecipeHelp
so know to get going
I am curious that what kind of apps I can develop for Android wear with current SDK support? Also I want to know that is it compulsory that it can be only used by paring with Android device?
Upvotes: 1
Views: 1242
Reputation: 7254
Please refer to the Android Wear Design documentation and the Android Wear Creative Vision to understand in detail what types of applications you can build with Android Wear. In general, Android Wear is intended to not get in the user's way, so the main goal is to provide contextual information (via bridged notifications and contextual notifications). You can implement wearable apps that run directly on the wearable device and these can make use of the sensors that the device has (such as accelerometer, heart-rate sensor, pedometer, etc.). The documentation has a chapter that describes the structure of wearable apps in detail. Also, have a look at the code samples (that you can download using the SDK manager). To give you an idea, here is a short selection of the samples included:
Upvotes: 2