★★★ The hook doesn't work and will be disabled if GMS 20.36 or later is detected. ★★★ This hook has nothing to do with privacy. It blocks the "Please install/upgrade/login to Google Play Games" dialog shown by some games. This hook reimplements the "No Play Games" Xposed module at http://repo.xposed.info/module/com.fifsource.android.noplaygames / https://forum.xda-developers.com/showthread.php?t=3332763 Only one of the Xposed module or XPL hook must be enabled at the same time. EdXposed users: Google Play Services (aka. GMS) must be whitelisted (or not blacklisted) in EdXposed Manager. This means that your device will not pass SafetyNet. Instructions: 1. Download this hook. 2. Make sure that the Fif collection is enabled in XPL Pro. 3. In XPL, navigate to the Google Play Services app (you may have to change the filter to "Show all apps" first), and expand the restriction categories. 4.a. Check the "Install Play Games" category. 4.b. Or, alternately, enable GMS.NoPlayGames hook for "Google Play Services" in XPL Pro. Changelog: v2 - 2020-10-17 Disable on GMS 20.36 and later. v1 - 2020-05-27 First public release.
Collection | Fif |
---|---|
Group | Install Play Games |
Name | GMS.NoPlayGames |
Author | Fif_ |
Version | 2 |
Updated (UTC) | 2020-10-18 01:27:53 |
Created (UTC) | 2020-05-28 02:13:36 |
Downloads | 2068 |
Class name | com.google.android.gms.games.entrypoint.UpgradeModuleEntryPointChimeraActivity |
Method name | onCreate |
Parameter types | android.os.Bundle |
Return type | void |
Min SDK | 0 |
Max SDK | 999 |
Min APK | 201500000 |
Max APK | 203599999 |
Excluded packages | ^(?!com\.google\.android\.gms$).* |
Enabled | Yes |
Optional | No |
Usage | Yes |
Notify | No |
Settings | - |
-- GMS.NoPlayGames is a Lua hook definition designed to work
-- with XPrivacyLua.
-- GMS.NoPlayGames is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
-- GMS.NoPlayGames is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
function after(hook, param)
local obj = param:getThis()
obj:onBackPressed()
return true
end