I own Stardew Valley but I am avoiding using the Google Play store when possible. While I could just sign into Aurora Store with my Google account I think I’d need to install Google Play Services so I am wondering if I could crack the game myself. I think in the past people used Lucky Patcher but I have tried it with other games that I own with no luck.

I’ve looked through the megathread and it seems like there are versions of Stardew Valley uploaded to Mobilism but a majority of them are modded for things like infinite stamina and money. The version without mods on Mobilism also appears to be re-uploaded from Apk Vision which isn’t in the megathread.

  • heisenbug4242@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    4 months ago

    If you’re willing to learn, look up apktool and ghidra, as well as the Dalvik bytecode reference. Some apps can be relatively simple to crack using one-liner Dalvik modifications. Others may require analysis and patching of the binary libraries. Some Unity games include debug symbols, which can be inspected using Il2CppInspector which makes the binary code easier to understand and easier to find the proper point for a crack. Start by extracting apks, and try something simple like removing the INTERNET permission from the AndroidManifest, to see if the app still works if you rebuild the apk. That improves privacy. After that, try removing more permissions or making Dalvik patches or even binary patches. A great game to start with is Terraria, as it can be cracked purely by modifying Dalvik bytecode. I’m not in a position to help further but felt I wanted to share this for educational purposes. Learning these internals is fun. You can even learn to degoogle your current Android ROM by applying a signature spoofing patch and include microG instead as a replacement alternative to google apis. Hope this helps. 🙂