From 46e6a14c733ba8b9c9c7958fa18744b66861b2c4 Mon Sep 17 00:00:00 2001 From: Mohammad Parvin Date: Wed, 1 May 2019 01:15:18 +0430 Subject: [PATCH] Allow user to install mattermost on sd card (#2731) Cannot install Mattermost when there is no enough space in internal memory, So when add this line android:installLocation="auto" to the manifest file user can install Mattermost on the sd card. https://developer.android.com/guide/topics/data/install-location --- android/app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 58ee5577a..7c981cd6f 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -17,6 +17,7 @@ android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:theme="@style/AppTheme" + android:installLocation="auto" android:networkSecurityConfig="@xml/network_security_config" >