├── updater.json ├── changelog.md └── README.md /updater.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v1.0.8", 3 | "versionCode": 10008, 4 | "zipUrl": "https://github.com/joeyoropesa-dev/trickystore-addon/releases/download/1.0.8/trickystore-addon.zip", 5 | "changelog": "https://raw.githubusercontent.com/joeyoropesa-dev/trickystore-addon/main/changelog.md" 6 | } 7 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | Telegram channel: 2 | [https://t.me/joeyoropesa](https://t.me/joeyoropesa) 3 | 4 | Github repository: 5 | [https://github.com/joeyoropesa-dev/trickystore-addon](https://github.com/joeyoropesa-dev/trickystore-addon) 6 | 7 | Patreon: 8 | [httos://www.patreon.com/joeyoropesa](https://www.patreon.com/joeyoropesa) 9 | 10 | # v1.0.8 11 | 12 | - Magisk/Kitsune compatibility improvements 13 | 14 | ## It's still WIP so if you have some issues feel free to report them in our repository. 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## PROJECT ON HOLD TEMPORARY 2 | Project will be on hold until futher notice due to technical reasons. Please, be inform that every issue created will be resolved when project continues it's development. 3 | 4 | ## API Outage (Temp fix) 5 | API are down that are deeply connected with the server and in the way how keybox validation works due to reports by Google. Google detected "too many requests" on taking integrity checks so it will take some time for me to recover it. 6 | 7 | Please, do not share sensitive information about tests you do and please do not do integrity checks often so that we can keep this project working as expected. 8 | 9 | (While working on a fix, I've linked external sources to provide strong so you guys don't need to worry about strong for now. To use it, just reboot your device or execute getkb and should be applied to you automatically. Just keep in mind, don't check for integrity too much and don't share sensitive information about those tests to avoid more bans) 10 | 11 | # Tricky Store Addon (WIP) 12 | This is Tricky Store addon created to extend features of original TrickyStore! The base of this module is [Tricky Store Helper](https://github.com/CaptainThrowback/TrickyStoreHelper) by Captain_Throwback. 13 | 14 | ## Implemented Features 15 | 1. In-real-time updating target.txt file 16 | 17 | 2. Updating the module in root managers directly 18 | 19 | 3. [Get-Keybox](https://github.com/joeyoropesa-dev/trickystore-addon#get-keybox-implementation-wip) for getting valid keybox.xml files after each boot as soon the internet connection is established 20 | 21 | ## To-do list 22 | 1. ~~Getting non-revoked valid keybox.xml files in-real-time (as soon you get connected to the internet after each boot)~~ Done :) 23 | 24 | 2. Python support 25 | 26 | 3. You tell me :) 27 | 28 | ## Requirements 29 | 1. Latest Tricky Store by [5ec1cff](https://github.com/5ec1cff/TrickyStore) 30 | 2. Latest official root manager (KSU/APatch): Magisk starting from 27008 canary build have issues with this module confirmed by user [#4](https://github.com/joeyoropesa-dev/trickystore-addon/issues/4) - until dev responds, please stay away from Magisk and other magisk-related managers. 31 | 3. Stock ROM (Since most custom ROMs failing to pass Play Integrity) 32 | 4. Play Integrity Fix by [Chiteroman](https://github.com/chiteroman/PlayIntegrityFix) (Optional) 33 | 34 | ## Get-Keybox Implementation (WIP) 35 | Get-Keybox is a feature implemented in module that allows getting non-revoked latest keybox as soon the boot is completed and network connection is established. You can also manually execute the command 36 | ```console 37 | :/ $ su 38 | :/ # getkb 39 | ``` 40 | to re-download latest keybox from our server without needing to reboot your device. 41 | 42 | The WIP (Work-in-progress) flag is set to this feature since it's in early stages so expect bugs and issues and report them - [#Issues](https://github.com/joeyoropesa-dev/trickystore-addon/issues) 43 | 44 | # 45 | 46 | ## Issues, Questions, Suggestions.. 47 | Since I have both Issues and Discussions tabs opened, please use correct places to suggest, ask questions and report issues/bugs. 48 | 49 | ## Donation 50 | You can subscribe to [Patreon](https://www.patreon.com/joeyoropesa) and help me financially 51 | --------------------------------------------------------------------------------