Advertisement
u624ka

sif_sdcard_EN

Jan 22nd, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. In case you're doing a fresh install without sufficient space for the inital download (otherwise skip these):
  2. 1) Install the game
  3. 2) Complete the tutorial
  4. 3) When the game restarts and begins to download files, just close it
  5.  
  6. Moving the files to a different storage:
  7. 4) Install a terminal emulator of choice (I used https://play.google.com/store/apps/details?id=jackpal.androidterm)
  8. Launch it it and do the following:
  9. 4.1) Log in as root su
  10. 4.2) Navigate to your game folder
  11. JP cd /data/data/klb.android.lovelive
  12. EN cd /data/data/klb.android.lovelive_en
  13. 4.2a) List directory contents ls
  14. If the output is the following, you're in the right place:
  15. app_SmartBeat
  16. cache
  17. databases
  18. files
  19. lib
  20. shared_prefs
  21. 4.3) Copy your files folder to the location of your choice
  22. cp -r files destination_folder
  23. Example: cp -r files /mnt/sdcard/app-data/klb.android.lovelive
  24. Create the destination folder in advance. If the copying is completed successfully, there will be no output in the terminal.
  25. 4.4) Remove the original folder rm -r files
  26. 4.5) Create a symbolic link to your new files folder
  27. ln -s destination_folder/files files
  28. Example: ln -s /mnt/sdcard/app-data/klb.android.lovelive/files files
  29. 4.5a) Confirm the link is functional cd files && ls
  30. Output:
  31. __ADMAGE_APP_CONVERSION_COMPLETED__
  32. __ADMAGE_CONVERSION_PAGE_OPENED__
  33. __ADMAGE_RANDOM_DEVICE_ID__
  34. __ADMAGE_WEB_CONVERSION_COMPLETED__
  35. com.smrtbeat
  36. external
  37. ghisler_temp.jpg
  38. install
  39.  
  40. 5) You can now play. Don't forget to hide root access.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement