1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright 2015 Google Inc. All rights reserved. 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 http://www.apache.org/licenses/LICENSE-2.0 8 Unless required by applicable law or agreed to in writing, software 9 distributed under the License is distributed on an "AS IS" BASIS, 10 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 See the License for the specific language governing permissions and 12 limitations under the License. 13 --> 14 15 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 16 package="com.example.android.wearable.speaker" > 17 18 <uses-feature android:name="android.hardware.type.watch" /> 19 20 <!-- the following permission is required to record audio using a microphone --> 21 <uses-permission android:name="android.permission.RECORD_AUDIO" /> 22 23 <application 24 android:allowBackup="true" 25 android:icon="@mipmap/ic_launcher" 26 android:label="@string/app_name" 27 android:supportsRtl="true" 28 android:theme="@android:style/Theme.DeviceDefault" > 29 <uses-library android:name="com.google.android.wearable" android:required="false" /> 30 <activity 31 android:name=".MainActivity" 32 android:label="@string/app_name" > 33 <intent-filter> 34 <action android:name="android.intent.action.MAIN" /> 35 36 <category android:name="android.intent.category.LAUNCHER" /> 37 </intent-filter> 38 </activity> 39 </application> 40 41 </manifest> 42