blob: 4cc903409b0a09e1bb41ec6a27c3a2ade928368b [file] [log] [blame]
Takeshi Hagikura0d834322014-09-24 18:10:45 +09001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source Project
3
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
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Takeshi Hagikuradff38662014-10-31 15:52:04 +090018 package="com.example.android.wearable.datalayer" >
Takeshi Hagikura0d834322014-09-24 18:10:45 +090019
20 <uses-sdk android:minSdkVersion="20"
Griff Hazen9d799c22014-11-19 16:20:19 -080021 android:targetSdkVersion="21" />
Takeshi Hagikura0d834322014-09-24 18:10:45 +090022
23 <uses-feature android:name="android.hardware.type.watch" />
24
25 <application
26 android:allowBackup="true"
27 android:icon="@drawable/ic_launcher"
28 android:label="@string/app_name"
29 android:theme="@android:style/Theme.DeviceDefault">
30
31 <meta-data
32 android:name="com.google.android.gms.version"
33 android:value="@integer/google_play_services_version" />
34
35 <service
36 android:name=".DataLayerListenerService" >
37 <intent-filter>
38 <action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
39 </intent-filter>
40 </service>
41
42 <activity
43 android:name=".MainActivity"
Takeshi Hagikura0d834322014-09-24 18:10:45 +090044 android:label="@string/app_name">
45 <intent-filter>
46 <action android:name="android.intent.action.MAIN"/>
47 <category android:name="android.intent.category.LAUNCHER"/>
48 </intent-filter>
49 <intent-filter>
Takeshi Hagikuradff38662014-10-31 15:52:04 +090050 <action android:name="com.example.android.wearable.datalayer.EXAMPLE"/>
Takeshi Hagikura0d834322014-09-24 18:10:45 +090051 <category android:name="android.intent.category.DEFAULT"/>
52 </intent-filter>
53 </activity>
54 </application>
55</manifest>