summaryrefslogtreecommitdiffstats
path: root/core/tests/inputmethodtests/AndroidManifest.xml
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-01-25 17:20:12 +0900
committerSatoshi Kataoka <satok@google.com>2013-01-28 19:25:55 +0900
commitf1367b7e903a2a69a8f833bb272e91d77abd57c6 (patch)
treedd09abe39190b51206928704efa2dcdd9b40ae70 /core/tests/inputmethodtests/AndroidManifest.xml
parent526603b1d8404432256b03507187f50c6b21b31d (diff)
downloadframeworks_base-f1367b7e903a2a69a8f833bb272e91d77abd57c6.zip
frameworks_base-f1367b7e903a2a69a8f833bb272e91d77abd57c6.tar.gz
frameworks_base-f1367b7e903a2a69a8f833bb272e91d77abd57c6.tar.bz2
Do not turn on imes unexpectedly with unit tests
Bug: 7872918 Change-Id: Ie1d74c9fac27de140e7aa85f2eaefcb89aa06ea7
Diffstat (limited to 'core/tests/inputmethodtests/AndroidManifest.xml')
-rw-r--r--core/tests/inputmethodtests/AndroidManifest.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/tests/inputmethodtests/AndroidManifest.xml b/core/tests/inputmethodtests/AndroidManifest.xml
new file mode 100644
index 0000000..7f0b1aa
--- /dev/null
+++ b/core/tests/inputmethodtests/AndroidManifest.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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"
+ android:installLocation="internalOnly"
+ package="com.android.frameworks.coretests.inputmethod"
+ android:sharedUserId="android.uid.system">
+
+ <application>
+ <uses-library android:name="android.test.runner" />
+ </application>
+
+ <instrumentation android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="com.android.frameworks.coretests.inputmethod"
+ android:label="Frameworks InputMethod Core Tests" />
+
+</manifest>