-6

当我从 Google PLAY 安装时,我无法将我的应用程序移动到内部存储器。但是,从 Eclipse 中,我在开发时可以移动它,如果我也直接从 .apk 安装。

我在 SD 卡中安装了其他应用程序。

  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.pedrera.ginTonic"
     android:versionCode="14"
     android:versionName="2.7" 
     android:installLocation="preferExternal">

<uses-sdk android:minSdkVersion="8" />
4

1 回答 1

3

引用文档

该应用程序更喜欢安装在外部存储(SD 卡)上。无法保证系统会遵守此请求。如果外部媒体不可用或已满,或者应用程序使用前向锁定机制(外部存储不支持),则应用程序可能安装在内部存储上。

于 2012-12-26T18:35:26.280 回答