1<?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"
18          package="com.example.android.wearable.geofencing">
19
20    <uses-sdk android:minSdkVersion="18"
21              android:targetSdkVersion="22" />
22
23    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
24
25    <application
26            android:icon="@drawable/ic_launcher"
27            android:label="@string/app_name"
28            android:theme="@android:style/Theme.Holo.Light"
29            android:allowBackup="true">
30
31        <meta-data
32                android:name="com.google.android.gms.version"
33                android:value="@integer/google_play_services_version"/>
34
35        <activity
36                android:name=".MainActivity"
37                android:label="@string/app_name"
38                android:theme="@android:style/Theme.Translucent.NoTitleBar"
39                android:excludeFromRecents="true">
40            <intent-filter>
41                <action android:name="android.intent.action.MAIN"/>
42                <category android:name="android.intent.category.LAUNCHER"/>
43            </intent-filter>
44        </activity>
45
46        <service
47            android:name=".GeofenceTransitionsIntentService"
48            android:exported="false">
49        </service>
50    </application>
51</manifest>
52