diff options
author | leggewie <leggewie@users.noreply.github.com> | 2018-08-20 17:14:25 +0800 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2018-08-20 11:14:25 +0200 |
commit | dd43545c4c52910fecfd912c88019171814796f1 (patch) | |
tree | 452633806a994b1c5a7b98385fb7b6a15f2c5dac | |
parent | 30d4d5342ff6cdcc7d1adbd0be34bea4b1aa1a96 (diff) |
Allow installation to external media (SD card) (#420)
This change will enable installation of the app to external as well as internal flash memory which is important for devices where internal memory is limited but external memory is cheap and abundant in form of micro SD cards.
More information at https://developer.android.com/guide/topics/data/install-location
-rw-r--r-- | app/src/main/AndroidManifest.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 735fb604..98e2bfa4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" - package="com.zeapo.pwdstore"> + package="com.zeapo.pwdstore" + android:installLocation="auto"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |