开发者

How to store App in SDcard

开发者 https://www.devze.com 2023-02-09 04:06 出处:网络
I am very new to android development.... i have created an app and want to store it in my android mobile. But normally all apps gets stored in mobile memory and it now shows no space so i want to stor

I am very new to android development.... i have created an app and want to store it in my android mobile. But normally all apps gets stored in mobile memory and it now shows no space so i want to store it in my SD card. Pls get me a solution for 开发者_运维百科this issue....


From the dev. guide:
Add this to your manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
... >

Note that as @Vinayak.B mentions in the comments, and as the guide says, this is available

"Beginning with API Level 8"

0

精彩评论

暂无评论...
验证码 换一张
取 消