指定app安装路径(sd卡还是手机内存)
在清单文件中: installLocation属性
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.rjglq" android:versionCode="1" android:installLocation="internalOnly" android:versionName="1.0" > <!--auto(默认状态,安装在内部存储空间) internalOnly(只能安装在内部) preferExternal(尽可能的安装在外部) -->