@echo off cls echo ================================================================================ echo INSTALL MICROG (Open Source Google Play Services) echo This will allow Canada Post app to work without official Google Play echo ================================================================================ echo. echo [1/4] Downloading MicroG APKs... echo. REM MicroG Services Core if not exist "GmsCore.apk" ( echo Downloading GmsCore... powershell -Command "Invoke-WebRequest -Uri 'https://github.com/microg/GmsCore/releases/latest/download/com.google.android.gms-*.apk' -OutFile 'GmsCore.apk'" ) REM MicroG Services Framework Proxy if not exist "GsfProxy.apk" ( echo Downloading GsfProxy... powershell -Command "Invoke-WebRequest -Uri 'https://github.com/microg/GmsCore/releases/latest/download/com.google.android.gsf-*.apk' -OutFile 'GsfProxy.apk'" ) REM Fake Store (pretends to be Play Store) if not exist "FakeStore.apk" ( echo Downloading FakeStore... powershell -Command "Invoke-WebRequest -Uri 'https://github.com/microg/GmsCore/releases/latest/download/com.android.vending-*.apk' -OutFile 'FakeStore.apk'" ) echo. echo [2/4] Installing MicroG Core... adb install -r GmsCore.apk echo. echo [3/4] Installing GSF Proxy... adb install -r GsfProxy.apk echo. echo [4/4] Installing Fake Store... adb install -r FakeStore.apk echo. echo ================================================================================ echo MICROG INSTALLED! echo ================================================================================ echo. echo Next steps: echo 1. Open MicroG Settings app on the device echo 2. Enable "Google device registration" echo 3. Grant all permissions echo 4. Rerun: frida -U -f com.canadapost.android -l frida_universal_bypass.js echo. echo ================================================================================ pause