From LedHed's Wiki
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
By default Google Play Music caches music to your internal storage.<br> | By default Google Play Music caches music to your internal storage.<br> | ||
If you want to move the cache to an external SD card then you need to create a symbolic link to your SD Card.<br> | If you want to move the cache to an external SD card then you need to create a symbolic link to your SD Card.<br> | ||
− | |||
=== Move or Clear Cache === | === Move or Clear Cache === | ||
From the information I've gathered, you need to clear the cache before moving the cache to the SD Card. But I suspect that you can just move the cache to the new location. | From the information I've gathered, you need to clear the cache before moving the cache to the SD Card. But I suspect that you can just move the cache to the new location. | ||
− | |||
=== Create Music Directory on SD Card === | === Create Music Directory on SD Card === | ||
Create the following folder on your SD Card: | Create the following folder on your SD Card: | ||
mkdir -p /storage/sdcard1/gMusic/music | mkdir -p /storage/sdcard1/gMusic/music | ||
− | |||
=== Create the Symbolic Link === | === Create the Symbolic Link === | ||
Line 19: | Line 16: | ||
cd /data/data/com.google.android.music/files | cd /data/data/com.google.android.music/files | ||
ln -s /storage/sdcard1/gMusic/music | ln -s /storage/sdcard1/gMusic/music | ||
+ | |||
+ | === Notes === | ||
+ | The SD Card mount point may differ on other devices. On the SGS3 its storage/sdcard1 | ||
+ | |||
[[Category:Android]] | [[Category:Android]] |
Latest revision as of 17:01, 24 May 2013
Google Play Music hosts your music in the cloud and you can stream or sync that music to your mobile device.
Contents
Music (Cache) on SD Card
By default Google Play Music caches music to your internal storage.
If you want to move the cache to an external SD card then you need to create a symbolic link to your SD Card.
Move or Clear Cache
From the information I've gathered, you need to clear the cache before moving the cache to the SD Card. But I suspect that you can just move the cache to the new location.
Create Music Directory on SD Card
Create the following folder on your SD Card:
mkdir -p /storage/sdcard1/gMusic/music
Create the Symbolic Link
Create a symlink to it in the following folder:
cd /data/data/com.google.android.music/files ln -s /storage/sdcard1/gMusic/music
Notes
The SD Card mount point may differ on other devices. On the SGS3 its storage/sdcard1