Enabling the Android "Move To SD Card"
By simply adding the following line to your manifest file, your app will get the ability to get moved/installed on the SD Card!
<manifest xmlns:android...>
android:installLocation="auto"
...
</manifest>
Comments
Post a Comment