Fay
Fay

Reputation: 49

Configuring the install location for eclipse

I am trying to set where my app will be installed, so far I have tried to put the path into

android:installLocation="android/data/com/installedpath"

But the error said i wrote the wrong format, so do you guys know the correct format for the Install Location part?

Thank you

Upvotes: 0

Views: 34

Answers (1)

Domin
Domin

Reputation: 463

According Android Development Guide (http://developer.android.com/intl/es/guide/topics/data/install-location.html), this attribute could contain two values: "preferExternal" or "auto". And its use is to allow to install the application on external storage.

Upvotes: 1

Related Questions