Quote:

Originally Posted by

Hi, I've built a dirty mod using Xposed framework to get Google Play store to work.



Installation

Requirement: Root your Ouya, 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 /sdcard/GoogleServicesFramework.apk adb push NetworkLocation.apk /sdcard/NetworkLocation.apk Code: 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.