summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorandroid-build SharedAccount <android-build@google.com>2009-03-13 21:43:01 -0700
committerandroid-build SharedAccount <android-build@google.com>2009-03-13 21:43:01 -0700
commit865b14b5faf8df8c090efa181ee5c5641f362fc9 (patch)
treefd16ece75a6791cf9f74d37008934cf199ed9d66 /AndroidManifest.xml
downloadUserDictionaryProvider-865b14b5faf8df8c090efa181ee5c5641f362fc9.tar.gz
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..9585043
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.providers.userdictionary"
+ android:sharedUserId="android.uid.shared">
+
+ <application android:process="android.process.acore">
+ <provider android:name="UserDictionaryProvider" android:authorities="user_dictionary"
+ android:syncable="false" android:multiprocess="false"
+ android:readPermission="android.permission.READ_USER_DICTIONARY"
+ android:writePermission="android.permission.WRITE_USER_DICTIONARY" />
+ </application>
+</manifest>