Difference between revisions of "How to move your app to SD card"

From Klaus' wiki
Jump to: navigation, search
(Created page with 'In the manifest file add this line in the main manifest clause: <source lang="XML"> android:installLocation="auto" </source> The API level has to be greater than or equal to 8…')
 
 
Line 6: Line 6:
  
 
The API level has to be greater than or equal to 8, but if you need to build an application for a lower API level keep the lower basic API level in the manifest, but build against at least level 8 in the properties for the project.
 
The API level has to be greater than or equal to 8, but if you need to build an application for a lower API level keep the lower basic API level in the manifest, but build against at least level 8 in the properties for the project.
 +
 +
[http://mobile.tutsplus.com/tutorials/android/move-to-sd-card/ Inspired from this page]

Latest revision as of 19:57, 13 April 2011

In the manifest file add this line in the main manifest clause:

	android:installLocation="auto"

The API level has to be greater than or equal to 8, but if you need to build an application for a lower API level keep the lower basic API level in the manifest, but build against at least level 8 in the properties for the project.

Inspired from this page