summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPradeep Panigrahi <pradeepp@codeaurora.org>2013-12-03 15:24:30 +0530
committerMichael Bestas <mikeioannina@gmail.com>2016-12-30 06:21:49 +0200
commitdf193078bfe590e5b1091022e57ec283e35cee16 (patch)
tree251dbb551169ecd5b7345ac79b232378fb68c634
parent0ab324f9ddf7635e1e5b859b5cba24480ad49165 (diff)
downloadandroid_packages_apps_Bluetooth-df193078bfe590e5b1091022e57ec283e35cee16.tar.gz
android_packages_apps_Bluetooth-df193078bfe590e5b1091022e57ec283e35cee16.tar.bz2
android_packages_apps_Bluetooth-df193078bfe590e5b1091022e57ec283e35cee16.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
-rwxr-xr-xAndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e53db06b4..10637377a 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -158,6 +158,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" />
@@ -170,6 +171,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>
@@ -212,7 +214,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"