I am building an heavy app (20mb) so i would like to know how to make as default installation to install in SD card i try few tutorial but not success the version of my android code is 2.2.
I add in the manifest the line:
android:installLocation="preferExternal"
but nothing happen
<?xml version="1.0" encoding="utf-8"?>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:resizeable="true"
android:anyDensity="true"/>
<activity android:name=".Toto"
android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
I will appreciate Help!!!