summaryrefslogtreecommitdiffstats
path: root/tests/AndroidManifest.xml
diff options
context:
space:
mode:
authorMichael Chan <mchan@android.com>2009-11-05 18:25:55 -0800
committerMichael Chan <mchan@android.com>2009-11-05 18:32:09 -0800
commit834e5993e4f2f34d5aceb3196601b30231d00b07 (patch)
tree0d80b6dee540faf255eef759f1f97e33c5c72226 /tests/AndroidManifest.xml
parent4d004e910732565ddd449c7c525f7d6cbd353392 (diff)
downloadpackages_apps_Settings-834e5993e4f2f34d5aceb3196601b30231d00b07.zip
packages_apps_Settings-834e5993e4f2f34d5aceb3196601b30231d00b07.tar.gz
packages_apps_Settings-834e5993e4f2f34d5aceb3196601b30231d00b07.tar.bz2
b/2234854 Fixed Bluetooth API return codes for requesting permission to enable bluetooth
Also added test app.
Diffstat (limited to 'tests/AndroidManifest.xml')
-rw-r--r--tests/AndroidManifest.xml16
1 files changed, 13 insertions, 3 deletions
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index cf2e03c..8a0ce21 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -4,9 +4,9 @@
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.
@@ -17,8 +17,18 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.settings.tests">
+ <uses-permission android:name="android.permission.BLUETOOTH" />
+
<application>
<uses-library android:name="android.test.runner" />
+ <activity android:name="BluetoothRequestPermissionTest"
+ android:label="Bluetooth Perm Test" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
</application>
<instrumentation android:name="SettingsLaunchPerformance"
@@ -26,4 +36,4 @@
android:label="Settings Launch Performance">
</instrumentation>
-</manifest>
+</manifest>