Memindahkan Aplikasi Android ke SD CardMove Android Application to SD Card


English version

Ada dua pelaku yang perlu diperhatikan agar aplikasi Android dapat dipindahkan ke SD Cara, yaitu:

1. Pengembang aplikasi Android
2. Pengguna aplikasi tersebut

Dari sisi pengembang aplikasi. Ada beberapa hal yang harus dilakukan :
1. Setting Android manifest :

<manifest xmlns: android = "http://schemas.android.com/apk/res/android"
package = "com.plugie.lacak"
android: installLocation = "preferExternal"
android: versionCode = "2"
android: versionName = "1.1">

Harus ditambahkan baris

android:installLocation="preferExternal"

Keterangan lengkap mengenai baris tersebut bisa baca di sini

2. Saat upload ke Android Market setting copy protection di set Off. Walaupun langkah 1 di atas sudah dilakukan, kalau copy protection di set On, maka saat di install aplikasi akan tetap terinstall di memory handphone bukan di SD CARD

Dari sisi pengguna aplikasi. Jika pengembang aplikasi sudah melakukan dua langkah di atas. Maka silahkan buka Menu->Settings->Application->Manage applications. Pilih aplikasi nya kemudian klik Move to SD CardVersi Indonesia

There are two players that need to be taken to ensure that the Android apps can be transferred to the SD CARD:

1. Android application developers
2. Application user

From the application developer point of view. There are several things to be done:
1. Setting the Android manifest:

<manifest xmlns: android = "http://schemas.android.com/apk/res/android"
package = "com.plugie.lacak"
android: installLocation = "preferExternal"
android: versionCode = "2"
android: versionName = "1.1">

Please note the line below should be added

android:installLocation="preferExternal"

Full details on these lines can be read at here

2. When upload the application to the Android Market. You should set copy protection settings to be Off. Although step 1 above has been done, if copy protection is set to On, then when the user install, the application will remain installed in phone memory instead of SD CARD

From the user application point of view.
If the application developer already done two steps above. So please go to Menu-> Settings-> Application-> Manage applications. Choose the application and then click Move to SD Card


One response to “Memindahkan Aplikasi Android ke SD CardMove Android Application to SD Card

  1. Hi there! Thanks for dropping by my blog. Glad the story could be of inspiration to you. All the best with your Android development, I look forward to hearing more about your experiences going forward.

Leave a Reply to David Webb Cancel reply

Your email address will not be published. Required fields are marked *