blob: f3d8983f74b3343326fd2c9723e76cd866c8732c [file] [log] [blame]
Svet Ganovc683da62016-01-29 19:05:31 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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"
Chris Wren0efdb882016-03-01 17:17:47 -050018 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
Svet Ganovc683da62016-01-29 19:05:31 -080019 package="android.ext.services"
20 android:versionCode="1"
21 android:versionName="1"
22 coreApp="true">
23
24 <application android:label="@string/app_name"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060025 android:defaultToDeviceProtectedStorage="true"
26 android:directBootAware="true">
Svet Ganovc683da62016-01-29 19:05:31 -080027
Daniel Nishicf9d19e2017-01-23 14:33:42 -080028 <service android:name=".storage.CacheQuotaServiceImpl"
29 android:permission="android.permission.BIND_CACHE_QUOTA_SERVICE">
30 <intent-filter>
31 <action android:name="android.app.usage.CacheQuotaService" />
32 </intent-filter>
33 </service>
34
Svet Ganovc683da62016-01-29 19:05:31 -080035 <library android:name="android.ext.services"/>
Svet Ganovc683da62016-01-29 19:05:31 -080036 </application>
37
38</manifest>