In my application i have setting tab in that i have on button like “move to sdcard” by pressing on it the application should move to phone memory to SD card is it possible from code to move the application.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can allow your app to be moved to the SD card by changing the “installLocation” attribute in your manifest file to “preferExternal” or “auto”. You can read more about it here: http://developer.android.com/guide/appendix/install-location.html
Then the user can choose to move your app via the Settings app and you don’t have to specify it in your own settings tab.