16fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly<?xml version="1.0" encoding="utf-8"?>
26fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly<!--
36fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly/*
46fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * Copyright (c) 2012 Google Inc.
56fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly *
66fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * Licensed under the Apache License, Version 2.0 (the "License");
76fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * you may not use this file except in compliance with the License.
86fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * You may obtain a copy of the License at
96fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly *
106fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly *     http://www.apache.org/licenses/LICENSE-2.0
116fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly *
126fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * Unless required by applicable law or agreed to in writing, software
136fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * distributed under the License is distributed on an "AS IS" BASIS,
146fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
156fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * See the License for the specific language governing permissions and
166fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly * limitations under the License.
176fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly */
186fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly-->
196fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly<manifest xmlns:android="http://schemas.android.com/apk/res/android"
206fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly        package="com.android.location.fused"
2103cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease        coreApp="true"
2203cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease        android:sharedUserId="android.uid.system">
236fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly
246fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
256fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
266fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly    <uses-permission android:name="android.permission.INSTALL_LOCATION_PROVIDER" />
2703cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease    <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
286fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly
296fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly    <application
3003cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease            android:label="@string/app_label"
3103cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease            android:process="system">
326fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly
336fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly        <uses-library android:name="com.android.location.provider" />
346fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly
356fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly        <!-- Fused Location Service that LocationManagerService binds to.
366fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly             LocationManagerService will bind to the service with the highest
376fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly             version. -->
386fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly        <service android:name="com.android.location.fused.FusedLocationService"
396fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly                 android:exported="true"
406fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly                 android:permission="android.permission.WRITE_SECURE_SETTINGS" >
416fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly           <intent-filter>
426fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly               <action android:name="com.android.location.service.FusedLocationProvider" />
436fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly           </intent-filter>
44fbadb69978be578cea9d2bf038de7c79b0787e4fJeff Hamilton           <meta-data android:name="serviceVersion" android:value="0" />
4503cdd3d275499df3ef1059905899dcc5aaf2ab01Victoria Lease           <meta-data android:name="serviceIsMultiuser" android:value="true" />
466fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly        </service>
476fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly    </application>
486fa9ad4afcd762aea519ff61811386c23d18ddb2Nick Pelly</manifest>
49