How to Install Android Apps to the SD Card by Defa

2019-03-14 09:54发布

I am following this tutorial for moving apps to sd card.

How to Install Android Apps to the SD Card by Default

But My Default Location is not changing. And My Phone Memory is full and unable to install new apps.

标签: android adb
2条回答
迷人小祖宗
2楼-- · 2019-03-14 10:18

android:installLocation="preferExternal"

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.fpm"
    android:versionCode="1"
    android:versionName="1.0"
  android:installLocation="preferExternal"
     >

Refrence

查看更多
萌系小妹纸
3楼-- · 2019-03-14 10:27

After Android Tools Update command adb shell pm setInstallLocation 2 has been changed to adb shell pm set-install-location 2 (note the command is case sensitive)

Updated Tutorial can be founded here.

查看更多
登录 后发表回答