I am trying to adb push a game save to my phone, which is not rooted. I followed a basic tutorial (can't post link), but changed a few things because I am trying to push a game save of Smurfs' Village. Like the tutorial, my phone is in 'debug mode' connected by USB, and adb devices returns correctly.
This is my code (Mac), but I get permission denied after the push:
cd /Users/xx/Desktop/adt-bundle-mac-x86_64/sdk/platform-tools
./adb push /Users/xx/Desktop/default01.smurfmap /data/data/com.capcom.smurfsandroid/files/default01.smurfmap
I just want to confirm, based on my research and testing, that I cannot push anything to /data/ without a root because /data/ is read only. I do have an SD card, so is it possible to make the card RW and push data to it? Is there any workaround to push this game save into /data/ without a root? I would prefer not to root my phone, and I'm fairly new to code as well.
Thanks!
This is my code (Mac), but I get permission denied after the push:
cd /Users/xx/Desktop/adt-bundle-mac-x86_64/sdk/platform-tools
./adb push /Users/xx/Desktop/default01.smurfmap /data/data/com.capcom.smurfsandroid/files/default01.smurfmap
I just want to confirm, based on my research and testing, that I cannot push anything to /data/ without a root because /data/ is read only. I do have an SD card, so is it possible to make the card RW and push data to it? Is there any workaround to push this game save into /data/ without a root? I would prefer not to root my phone, and I'm fairly new to code as well.
Thanks!