If you are having trouble, like I was, use this code instead. The only change I made was using cat instead of cp. Thanks again to all those involved in getting Google Play to work.
Code:
su
mount -orw,remount /system
cat /sdcard/com.android.vending.apk > /system/app/com.android.vending.apk
cat /sdcard/com.google.android.gms.apk > /system/app/com.google.android.gms.apk
cat /sdcard/GoogleLoginService.apk > /system/app/GoogleLoginService.apk
cat /sdcard/GoogleServicesFramework.apk > /system/app/GoogleServicesFramework.apk
cat /sdcard/NetworkLocation.apk > /system/app/NetworkLocation.apk
chmod 644 /system/app/com.android.vending.apk
chmod 644 /system/app/com.google.android.gms.apk
chmod 644 /system/app/GoogleLoginService.apk
chmod 644 /system/app/GoogleServicesFramework.apk
chmod 644 /system/app/NetworkLocation.apk
mount -oro,remount /system
reboot
Hi, I've built a dirty mod using Xposed framework to get Google Play store to work.
Installation
Requirement: Root your Ouya, busybox installed, adb tools
Files you need: ps4ouya.zip , download and extract them
- Sideload the Xposed framework, download link and installation guide from here.
- Sideload Mod_PS4Ouya.apk and enable "Play Store Mod For Ouya" in the Xposed app
- Push these Google apk to /system/app
Code:adb push com.android.vending.apk /sdcard/com.android.vending.apk adb push com.google.android.gms.apk /sdcard/com.google.android.gms.apk adb push GoogleLoginService.apk /sdcard/GoogleLoginService.apk adb push GoogleServicesFramework.apk /sdcard/GoogleServicesFramework.apk adb push NetworkLocation.apk /sdcard/NetworkLocation.apkIn the shellCode:adb shell
Code:su mount -orw,remount /system cp /sdcard/com.android.vending.apk /system/app cp /sdcard/com.google.android.gms.apk /system/app cp /sdcard/GoogleLoginService.apk /system/app cp /sdcard/GoogleServicesFramework.apk /system/app cp /sdcard/NetworkLocation.apk /system/app chmod 644 /system/app/com.android.vending.apk chmod 644 /system/app/com.google.android.gms.apk chmod 644 /system/app/GoogleLoginService.apk chmod 644 /system/app/GoogleServicesFramework.apk chmod 644 /system/app/NetworkLocation.apk mount -oro,remount /system reboot
Now the Play Store should ready to work.
If you can't find the Play Store in the MAKE menu, sideload the com.android.vending.apk again.
Code:adb install -r com.android.vending.apk