blob: c14287c301cb84822e1261f8389a2bbfafef90e6 [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
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.android.providers.userdictionary"
19 android:sharedUserId="android.uid.shared">
20
Amith Yamasanic5885c42009-08-05 18:55:23 -070021 <application android:process="android.process.acore"
Dianne Hackborndcb7a352010-07-24 18:22:58 -070022 android:label="@string/app_label"
Amith Yamasani0a764ad2009-08-07 20:25:15 -070023 android:allowClearUserData="false"
Amith Yamasanic5885c42009-08-05 18:55:23 -070024 android:backupAgent="DictionaryBackupAgent"
Christopher Tated360ccf2009-09-01 21:18:36 -070025 android:killAfterRestore="false"
Alex Klyubin989fef92015-05-20 11:34:42 -070026 android:usesCleartextTraffic="false"
Amith Yamasanic5885c42009-08-05 18:55:23 -070027 >
android-build SharedAccount865b14b2009-03-13 21:43:01 -070028 <provider android:name="UserDictionaryProvider" android:authorities="user_dictionary"
29 android:syncable="false" android:multiprocess="false"
Svetoslave0e0e0c2015-06-23 17:19:32 -070030 android:exported="true" />
android-build SharedAccount865b14b2009-03-13 21:43:01 -070031 </application>
32</manifest>