blob: 6f7e81e8a1c3dbb89a69cbf3b670c7eabbea2e8a [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
Trevor Johns3ba022b2014-11-06 22:45:31 +000020 <uses-sdk android:minSdkVersion="18"
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.camera" android:required="false" />
24
25 <application
26 android:allowBackup="true"
27 android:icon="@drawable/ic_launcher"
28 android:label="@string/app_name">
29
30 <meta-data
31 android:name="com.google.android.gms.version"
32 android:value="@integer/google_play_services_version" />
33
34 <activity
35 android:name=".MainActivity"
36 android:label="@string/app_name"
37 android:launchMode="singleTask" >
38 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
40 <category android:name="android.intent.category.LAUNCHER" />
41 </intent-filter>
42 </activity>
43 </application>
44</manifest>