Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying to set my default install location of android apps into my sd-card(external storage).So i tried these commands,

adb shell pm getInstallLocation (this shows 0[auto])

so i run this command to make it sd-card

adb shell pm setInstallLocation 2

again i run this to see if the command ran successfully or not.

adb shell pm getInstallLocation (this shows 2[external)

But after all these still my apps are getting installing into internal memory and i am getting low memory space issue in my phone.Any help will be appreciated.

share|improve this question

2 Answers

up vote 2 down vote accepted

did you tried with installLocation="PreferredExternal" options in your manifest.xml file ?

If you try this your app will get installed in external storage.

share|improve this answer
It is not a project.I am installing from the market. – Android Killer Jan 28 at 11:09
then after installing you need to move to sdcard.. you will get this option in Settings->Appliatons -> manageApplicatons-> particular applications- > you will be having an option like move to phone and move to sdcard option.. by using that you can change it . – itsrajesh4uguys Jan 28 at 11:12

Did you specify the installLocation in your Manifest.xml?

Please see also http://developer.android.com/guide/topics/manifest/manifest-element.html

share|improve this answer
It is not a project.I am installing from the market. – Android Killer Jan 28 at 11:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.