summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAshwini Munigala <AshwiniM@codeaurora.org>2013-09-18 20:10:53 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2013-11-11 18:10:44 -0800
commit41c7ab1852d626d9d7329d4bc6ab905b6afe1810 (patch)
treeda7701eddc9478a43607b32447e7858a1fa80995 /AndroidManifest.xml
parent9ddff55e46a5ee54cca159f44b56076cb2aa0e34 (diff)
downloadandroid_packages_apps_BluetoothExt-41c7ab1852d626d9d7329d4bc6ab905b6afe1810.tar.gz
android_packages_apps_BluetoothExt-41c7ab1852d626d9d7329d4bc6ab905b6afe1810.tar.bz2
android_packages_apps_BluetoothExt-41c7ab1852d626d9d7329d4bc6ab905b6afe1810.zip
FTP: Support both primary and secondary external storage
Expose both PRIMARY (internal phone memory) and SECONDARY (external sdcard) memory partitions through FTP Server. File system paths are retreived from Enivronment variables EXTERNAL_STORAGE and SECONDARY_STORAGE. Folders naming "PHONE_MEMORY" and "EXTERNAL_MEMORY" are composed in folder listing at root path to get the USER selection for access to internal or external storage. Change-Id: I15fbb653ba745be32082ca51fccd5a6caa7b63d5 CRs-fixed: 504636
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 ff8189c..6dfea7f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -48,6 +48,8 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<uses-permission android:name="android.permission.MMS_PUSH"></uses-permission>
<uses-permission android:name="com.android.email.permission.ACCESS_PROVIDER"/>
<uses-permission android:name="com.android.email.permission.READ_ATTACHMENT"/>
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
<application android:process="com.android.bluetooth">
<uses-library android:name="javax.obex" />
<service
@@ -71,7 +73,7 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<action android:name="android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED" />
</intent-filter>
</receiver>
- <activity android:name=".map.BluetoothMasActivity"
+ <activity android:name=".map.BluetoothMasActivity"
android:process="@string/process"
android:excludeFromRecents="true"
android:enabled="@bool/profile_supported_map"