blob: 37860c412ec99a0c257e49249bb638490fbe82c4 [file] [log] [blame]
android-build SharedAccount865b14b2009-03-13 21:43:01 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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
Grace Jia91de5bb2021-06-09 20:51:31 -07007
android-build SharedAccount865b14b2009-03-13 21:43:01 -07008 http://www.apache.org/licenses/LICENSE-2.0
Grace Jia91de5bb2021-06-09 20:51:31 -07009
android-build SharedAccount865b14b2009-03-13 21:43:01 -070010 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.android.providers.userdictionary"
19 android:sharedUserId="android.uid.shared">
20
Grace Jia91de5bb2021-06-09 20:51:31 -070021 <uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
22
Amith Yamasanic5885c42009-08-05 18:55:23 -070023 <application android:process="android.process.acore"
Dianne Hackborndcb7a352010-07-24 18:22:58 -070024 android:label="@string/app_label"
Amith Yamasani0a764ad2009-08-07 20:25:15 -070025 android:allowClearUserData="false"
Amith Yamasanic5885c42009-08-05 18:55:23 -070026 android:backupAgent="DictionaryBackupAgent"
Christopher Tated360ccf2009-09-01 21:18:36 -070027 android:killAfterRestore="false"
Alex Klyubin989fef92015-05-20 11:34:42 -070028 android:usesCleartextTraffic="false"
Amith Yamasanic5885c42009-08-05 18:55:23 -070029 >
android-build SharedAccount865b14b2009-03-13 21:43:01 -070030 <provider android:name="UserDictionaryProvider" android:authorities="user_dictionary"
31 android:syncable="false" android:multiprocess="false"
Svetoslave0e0e0c2015-06-23 17:19:32 -070032 android:exported="true" />
android-build SharedAccount865b14b2009-03-13 21:43:01 -070033 </application>
34</manifest>