scintill / DuOTP-android

small GPL3+ Android app that allows you to log in to some Duo-protected services with a standard OTP app
https://f-droid.org/en/packages/net.scintill.duotp/
GNU General Public License v3.0
16 stars 3 forks source link

Make app movable to SD card #1

Open Atrate opened 4 years ago

Atrate commented 4 years ago

Rationale

Over 25% of the world's Android devices still run Android 6.0 or older [1]. This version of Android still has native support for moving applications to SD cards — this is crucial when dealing with low-storage devices. Many more recent OEM OSes also support moving applications to SD cards. This means making applications movable to the SD card is IMHO a rational choice.

Solution

Add android:installLocation="auto" flag to AndroidMainfest.xml. The default for Android is, curiously, not "auto" but "internalOnly"

https://developer.android.com/guide/topics/data/install-location

Signed-off-by: Atrate Atrate@protonmail.com