summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorPradeep Panigrahi <pradeepp@codeaurora.org>2013-12-03 15:24:30 +0530
committerLinux Build Service Account <lnxbuild@localhost>2015-10-06 03:25:20 -0600
commitefd6fd5b32707db700784984dc746f8cbcabc656 (patch)
treede833bbda60bc32438073e981ad9f34f41b230d7 /AndroidManifest.xml
parentf5d7dc9154273b6513c355c7942c5bb071f3f065 (diff)
downloadandroid_packages_apps_Bluetooth-efd6fd5b32707db700784984dc746f8cbcabc656.tar.gz
android_packages_apps_Bluetooth-efd6fd5b32707db700784984dc746f8cbcabc656.tar.bz2
android_packages_apps_Bluetooth-efd6fd5b32707db700784984dc746f8cbcabc656.zip
Orientation change fix for tranfer history popup. Add entry for mp3 and archived file formats.
Use Case 1: 1. Transfer some file to another device via Bluetooth, 2. Once transfer is done, go to Outbound/inbound transfers from notification bar, 3. Select "clear list" from settings option, 4. Rotate device. Failure: window leak is observed after rotating the device. Fix: Enable screen orientation support in Manifest file of Bluetooth app for Bluetooth file tranfer history activity. Otherwise "Clear List" popup will disappears soon after screen orientation changes. Use Case 2: 1. Send MP3 and archived file format to remote device. Failure: Transfer did not start. Fix: Add change to support sending receving of MP3 and archived file format files Change-Id: I89a1d1da7981d503b6bd22b94535727af399e52d
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index c49dc1eb6..80dfcc354 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -140,6 +140,7 @@
<data android:mimeType="application/zip" />
<data android:mimeType="application/vnd.ms-excel" />
<data android:mimeType="application/msword" />
+ <data android:mimeType="application/vnd.android.package-archive" />
<data android:mimeType="application/vnd.ms-powerpoint" />
<data android:mimeType="application/pdf" />
<data android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
@@ -152,6 +153,7 @@
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
+ <data android:mimeType="audio/*" />
<data android:mimeType="x-mixmedia/*" />
<data android:mimeType="text/x-vcard" />
</intent-filter>
@@ -194,7 +196,7 @@
android:process="@string/process"
android:label=""
android:excludeFromRecents="true"
- android:configChanges="orientation|keyboardHidden"
+ android:configChanges="orientation|keyboardHidden|screenSize"
android:enabled="@bool/profile_supported_opp">
</activity>
<activity android:name=".pbap.BluetoothPbapActivity"