Learn from this tutorial how to give permission to your app to be installed on external storage (SD card) in Android Studio version 1.4. Open AndroidManifest.xml file and write this code like in picture below:
android:installLocation="preferExternal"
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
WRITE EXTERNAL STORAGEThis permission is needed only up to API level 18. Beginning with Android 4.4 (API level 19), the system will no longer grant your app the WRITE_EXTERNAL_STORAGE permission. When application is installed on the external storage, any data (for example databases) is still saved on the internal device memory. Watch the video tutorial to allow an application to write to external storage in Android Studio version 1.4: For further questions leave a message.  

Leave a Reply

Your email address will not be published. Required fields are marked *

Blue Captcha Image Refresh

*