Repository: YurikeyDev/yurikey Branch: main Commit: 442cfc13e061 Files: 89 Total size: 783.2 KB Directory structure: gitextract_9qmznag3/ ├── .github/ │ └── workflows/ │ ├── build-release.yml │ └── build-test.yml ├── .gitignore ├── LICENSE ├── Module/ │ ├── META-INF/ │ │ └── com/ │ │ └── google/ │ │ └── android/ │ │ ├── update-binary │ │ └── updater-script │ ├── Yuri/ │ │ ├── action/ │ │ │ ├── integrity.sh │ │ │ └── root.sh │ │ ├── boot_hash.sh │ │ ├── clear_all_detection_traces.sh │ │ ├── hma.sh │ │ ├── kill_all.sh │ │ ├── kill_google_process.sh │ │ ├── pif.sh │ │ ├── rka/ │ │ │ ├── arm64-v8a/ │ │ │ │ └── sqlite3 │ │ │ ├── armeabi/ │ │ │ │ └── sqlite3 │ │ │ ├── armeabi-v7a/ │ │ │ │ └── sqlite3 │ │ │ ├── jsonarray.sh │ │ │ ├── lspmcfg.sh │ │ │ ├── x86/ │ │ │ │ └── sqlite3 │ │ │ └── x86_64/ │ │ │ └── sqlite3 │ │ ├── security_patch.sh │ │ ├── select_app_neccesary.sh │ │ ├── target_txt.sh │ │ ├── yuri_keybox.sh │ │ ├── yurirka.sh │ │ └── znctl.sh │ ├── action.sh │ ├── customize.sh │ ├── module.prop │ ├── service.sh │ ├── uninstall.sh │ └── webroot/ │ ├── common/ │ │ ├── FixWidevineL1/ │ │ │ ├── FixWidevineL1.sh │ │ │ └── attestation │ │ ├── boot_hash.sh │ │ ├── device-info.sh │ │ ├── lsposed2.sh │ │ ├── pif2.sh │ │ ├── twrp.sh │ │ └── widevinel1.sh │ ├── config.json │ ├── css/ │ │ └── style.css │ ├── index.html │ ├── js/ │ │ ├── components/ │ │ │ ├── clock.js │ │ │ ├── navigation.js │ │ │ └── networkStatus.js │ │ ├── dev.js │ │ ├── device.js │ │ ├── main.js │ │ ├── redirect.js │ │ ├── theme.js │ │ ├── utils/ │ │ │ ├── i18n.js │ │ │ ├── scriptExecutor.js │ │ │ └── toast.js │ │ └── version.js │ ├── json/ │ │ └── dev.json │ └── lang/ │ ├── af.json │ ├── ar.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── es.json │ ├── fi.json │ ├── fr.json │ ├── he.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── sr.json │ ├── sv.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json ├── README.md ├── changelog.md ├── config.json ├── doc/ │ └── README_ja-JP.md ├── key └── update.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/build-release.yml ================================================ name: Build Release Module on: workflow_dispatch: permissions: contents: write jobs: release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - name: Extract version id: version run: | VERSION=$(grep -m 1 -oP 'v[0-9]+(\.[0-9]+)+' changelog.md) if [ -z "$VERSION" ]; then echo "No version found in changelog" exit 0 fi VERSION_CODE=$(echo $VERSION | sed 's/v//' | sed 's/\.//g') RAW_VERSION=$(echo $VERSION | sed 's/v//') echo "version=$VERSION" >> $GITHUB_OUTPUT echo "version_code=$VERSION_CODE" >> $GITHUB_OUTPUT echo "raw_version=$RAW_VERSION" >> $GITHUB_OUTPUT - name: Update module.prop run: | sed -i "s/^version=.*/version=${{ steps.version.outputs.version }}/" Module/module.prop sed -i "s/^versionCode=.*/versionCode=${{ steps.version.outputs.version_code }}/" Module/module.prop - name: Update update.json run: | ZIP_URL="https://github.com/Yurii0307/yurikey/releases/download/${{ steps.version.outputs.version }}/Yurikey-${{ steps.version.outputs.version }}.signed.zip" jq --arg v "${{ steps.version.outputs.raw_version }}" \ --argjson vc "${{ steps.version.outputs.version_code }}" \ --arg url "$ZIP_URL" \ '.version = $v | .versionCode = $vc | .zipUrl = $url' \ update.json > update_tmp.json && mv update_tmp.json update.json - name: Zip Module folder (Upload module) run: | cd Module zip -r ../Yurikey-${{ steps.version.outputs.version }}.signed.zip . - name: Commit and push if changed run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git add Module/module.prop update.json if git diff --cached --quiet; then echo "No changes to commit" else git commit -m "chore: sync Yurikey Manager version ${{ steps.version.outputs.raw_version }}" git push fi - name: Create Release uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.version.outputs.version }} name: Yurikey Manager ${{ steps.version.outputs.version }} body_path: changelog.md files: Yurikey-${{ steps.version.outputs.version }}.signed.zip env: GITHUB_TOKEN: ${{ github.token }} ================================================ FILE: .github/workflows/build-test.yml ================================================ name: Build Test Module on: #push: # paths: # - 'Module/**' # branches: # - main # - dev workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v6 - name: Update version with git HEAD run: | RANDOM_STRING=$(git rev-parse --short HEAD | cut -c1-7) echo "BUILD_ID=${RANDOM_STRING}" >> $GITHUB_ENV sed -i "s/^version=.*/version=${RANDOM_STRING}/" Module/module.prop - name: Upload release artifact uses: actions/upload-artifact@v7 with: name: YuriKey_${{ env.BUILD_ID }} path: | ${{ github.workspace }}/Module/* ================================================ FILE: .gitignore ================================================ Module/webroot/json/device-info.json Module/webroot/lang/source/string.json string.yml ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program 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. This program 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. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: Module/META-INF/com/google/android/update-binary ================================================ #!/sbin/sh ################# # Initialization ################# umask 022 # echo before loading util_functions ui_print() { echo "$1"; } require_new_magisk() { ui_print "*******************************" ui_print " Please install Magisk v19.0+! " ui_print "*******************************" exit 1 } ######################### # Load util_functions.sh ######################### OUTFD=$2 ZIPFILE=$3 mount /data 2>/dev/null [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk . /data/adb/magisk/util_functions.sh [ $MAGISK_VER_CODE -lt 19000 ] && require_new_magisk if [ $MAGISK_VER_CODE -ge 20400 ]; then # New Magisk have complete installation logic within util_functions.sh install_module exit 0 fi ################# # Legacy Support ################# # Global vars TMPDIR=/dev/tmp PERSISTDIR=/sbin/.magisk/mirror/persist rm -rf $TMPDIR 2>/dev/null mkdir -p $TMPDIR is_legacy_script() { unzip -l "$ZIPFILE" install.sh | grep -q install.sh return $? } print_modname() { local len len=`echo -n $MODNAME | wc -c` len=$((len + 2)) local pounds=`printf "%${len}s" | tr ' ' '*'` ui_print "$pounds" ui_print "$MODNAME " ui_print "by $MODAUTH" ui_print "$pounds" ui_print "*******************" ui_print " Powered by Magisk " ui_print "*******************" } # Preperation for flashable zips setup_flashable # Mount partitions mount_partitions # Detect version and architecture api_level_arch_detect # Setup busybox and binaries $BOOTMODE && boot_actions || recovery_actions ############## # Preparation ############## # Extract prop file unzip -o "$ZIPFILE" module.prop -d $TMPDIR >&2 [ ! -f $TMPDIR/module.prop ] && abort "! Unable to extract zip file!" $BOOTMODE && MODDIRNAME=modules_update || MODDIRNAME=modules MODULEROOT=$NVBASE/$MODDIRNAME MODID=`grep_prop id $TMPDIR/module.prop` MODPATH=$MODULEROOT/$MODID MODNAME=`grep_prop name $TMPDIR/module.prop` MODAUTH=`grep_prop author $TMPDIR/module.prop` # Create mod paths rm -rf $MODPATH 2>/dev/null mkdir -p $MODPATH ########## # Install ########## if is_legacy_script; then unzip -oj "$ZIPFILE" module.prop install.sh uninstall.sh 'common/*' -d $TMPDIR >&2 # Load install script . $TMPDIR/install.sh # Callbacks print_modname on_install # Custom uninstaller [ -f $TMPDIR/uninstall.sh ] && cp -af $TMPDIR/uninstall.sh $MODPATH/uninstall.sh # Skip mount $SKIPMOUNT && touch $MODPATH/skip_mount # prop file $PROPFILE && cp -af $TMPDIR/system.prop $MODPATH/system.prop # Module info cp -af $TMPDIR/module.prop $MODPATH/module.prop # post-fs-data scripts $POSTFSDATA && cp -af $TMPDIR/post-fs-data.sh $MODPATH/post-fs-data.sh # service scripts $LATESTARTSERVICE && cp -af $TMPDIR/service.sh $MODPATH/service.sh ui_print "- Setting permissions" set_permissions else print_modname unzip -o "$ZIPFILE" customize.sh -d $MODPATH >&2 if ! grep -q '^SKIPUNZIP=1$' $MODPATH/customize.sh 2>/dev/null; then ui_print "- Extracting module files" unzip -o "$ZIPFILE" -x 'META-INF/*' -d $MODPATH >&2 # Default permissions set_perm_recursive $MODPATH 0 0 0755 0644 fi # Load customization script [ -f $MODPATH/customize.sh ] && . $MODPATH/customize.sh fi # Handle replace folders for TARGET in $REPLACE; do ui_print "- Replace target: $TARGET" mktouch $MODPATH$TARGET/.replace done if $BOOTMODE; then # Update info for Magisk Manager mktouch $NVBASE/modules/$MODID/update cp -af $MODPATH/module.prop $NVBASE/modules/$MODID/module.prop fi # Copy over custom sepolicy rules if [ -f $MODPATH/sepolicy.rule -a -e $PERSISTDIR ]; then ui_print "- Installing custom sepolicy patch" PERSISTMOD=$PERSISTDIR/magisk/$MODID mkdir -p $PERSISTMOD cp -af $MODPATH/sepolicy.rule $PERSISTMOD/sepolicy.rule fi # Remove stuffs that don't belong to modules rm -rf \ $MODPATH/system/placeholder $MODPATH/customize.sh \ $MODPATH/README.md $MODPATH/.git* 2>/dev/null ############## # Finalizing ############## cd / $BOOTMODE || recovery_cleanup rm -rf $TMPDIR ui_print "- Done" exit 0 ================================================ FILE: Module/META-INF/com/google/android/updater-script ================================================ #MAGISK ================================================ FILE: Module/Yuri/action/integrity.sh ================================================ MODPATH="${0%/*}" SCRIPT_PATH="$MODPATH/.." for SCRIPT in \ "kill_google_process.sh" \ "target_txt.sh" \ "security_patch.sh" \ "boot_hash.sh" \ "yuri_keybox.sh" do if ! sh "$SCRIPT_PATH/$SCRIPT"; then echo "- Error: $SCRIPT failed. Aborting..." exit 1 fi done sh "$SCRIPT_PATH/pif.sh" ================================================ FILE: Module/Yuri/action/root.sh ================================================ MODPATH="${0%/*}" SCRIPT_PATH="$MODPATH/.." for SCRIPT in \ "hma.sh" do if ! sh "$SCRIPT_PATH/$SCRIPT"; then echo "- Error: $SCRIPT failed. Aborting..." exit 1 fi done sh "$SCRIPT_PATH/znctl.sh" ================================================ FILE: Module/Yuri/boot_hash.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [SET_BOOT_HASH] $1" } log_message "Start" # Get vbmeta hash boot_hash=$(su -c "getprop ro.boot.vbmeta.digest" 2>/dev/null) [ -z "$boot_hash" ] && boot_hash="0000000000000000000000000000000000000000000000000000000000000000" file_path="/data/adb/boot_hash" # Create folder and write file log_message "Writing" mkdir -p "$(dirname "$file_path")" echo "$boot_hash" > "$file_path" chmod 644 "$file_path" su -c "resetprop -n ro.boot.vbmeta.digest $boot_hash" >/dev/null 2>&1 log_message "Finish" ================================================ FILE: Module/Yuri/clear_all_detection_traces.sh ================================================ #!/system/bin/sh banner() { clear printf "\033[41m \033[0m\n" printf "\033[41m \033[0m\n" printf "\033[41m(One-click to clear all detection traces)\033[0m\n" printf "\033[41m \033[0m\n" printf "\033[41m \033[0m\n" sleep 3 clear } progress() { printf "\033[31m[1/5] Clearing detector application data...\033[0m\n" sleep 0.5 printf "\033[31m[2/5] Clearing file cache tool app (MT Manager, HyperCeiler, LuckyTool,....)\033[0m\n" sleep 0.5 printf "\033[31m[3/5] Resetprop, reset system properties, clear custom rom,HMA paths...\033[0m\n" sleep 0.5 printf "\033[31m[4/5] Clearing odex, art, cache Lsposed....\033[0m\n" sleep 0.5 printf "\033[31m[5/5] Clearing...\033[0m\n" sleep 3 } complete() { printf "\n" printf "\033[1;32mDone!\033[0m\n" printf "\033[1;32mt.me/yuriiroot\033[0m\n" } remove_path() { [ -n "$1" ] && rm -rf "$1" 2>/dev/null } detector_data() { # For /storage/emulated/0/Android/data/* if exists remove_path "/storage/emulated/0/Android/data/me.garfieldhan.holmes" remove_path "/storage/emulated/0/Android/data/com.zhenxi.hunter" remove_path "/storage/emulated/0/Android/data/icu.nullptr.nativetest" remove_path "/storage/emulated/0/Android/data/icu.nullptr.applistdetector" remove_path "/storage/emulated/0/Android/data/com.byxiaorun.detector" remove_path "/storage/emulated/0/Android/data/io.github.huskydg.memorydetector" remove_path "/storage/emulated/0/Android/data/com.OrangeEnvironment.Detector" remove_path "/storage/emulated/0/Android/data/com.Longze.detector.pro2" remove_path "/storage/emulated/0/Android/data/rikka.safetynetchecker" remove_path "/storage/emulated/0/Android/data/io.github.vvb2060.keyattestation" remove_path "/storage/emulated/0/Android/data/io.github.vvb2060.mahoshojo" remove_path "/storage/emulated/0/Android/data/com.lingqing.detector" remove_path "/storage/emulated/0/Android/data/aidepro.top" remove_path "/storage/emulated/0/Android/data/com.junge.algorithmAidePro" remove_path "/storage/emulated/0/Android/data/chunqiu.safe" remove_path "/storage/emulated/0/Android/data/luna.safe.luna" remove_path "/storage/emulated/0/Android/data/io.liankong.riskdetector" remove_path "/storage/emulated/0/Android/data/com.studio.duckdetector" remove_path "/storage/emulated/0/Android/data/com.android.nativetest" remove_path "/storage/emulated/0/Android/data/com.byyoung.setting" remove_path "/storage/emulated/0/Android/data/com.scottyab.rootbeer" remove_path "/storage/emulated/0/Android/data/com.scottyab.rootbeer.sample" remove_path "/storage/emulated/0/Android/data/com.topjohnwu.magisk.detector" remove_path "/storage/emulated/0/Android/data/com.devadvance.rootcloak" remove_path "/storage/emulated/0/Android/data/com.fde.xposed.detector" remove_path "/storage/emulated/0/Android/data/com.zhenxi.checker" remove_path "/storage/emulated/0/Android/data/com.example.nativelibtest" remove_path "/storage/emulated/0/Android/data/com.example.memcheck" remove_path "/storage/emulated/0/Android/data/com.example.syscallchecker" remove_path "/storage/emulated/0/Android/data/com.jrummyapps.rootchecker" remove_path "/storage/emulated/0/Android/data/com.kimchangyoun.magiskdetector" remove_path "/storage/emulated/0/Android/data/com.reveny.nativechecker" remove_path "/storage/emulated/0/Android/data/com.reveny.environmentchecker" remove_path "/storage/emulated/0/Android/data/com.reveny.rootchecker" remove_path "/storage/emulated/0/Android/data/com.guardian.detect" remove_path "/storage/emulated/0/Android/data/com.security.environmentchecker" remove_path "/storage/emulated/0/Android/data/com.integrity.checker" remove_path "/storage/emulated/0/Android/data/com.integrity.attestation" remove_path "/storage/emulated/0/Android/data/com.lody.virtual" remove_path "/storage/emulated/0/Android/data/com.lody.virtual.client" remove_path "/storage/emulated/0/Android/data/com.lody.virtual.server" remove_path "/storage/emulated/0/Android/data/com.lody.whale" remove_path "/storage/emulated/0/Android/data/com.kimchangyoun.rootbeerfresh" remove_path "/storage/emulated/0/Android/data/com.didikee.rootcheck" remove_path "/storage/emulated/0/Android/data/com.joeykrim.rootcheck" remove_path "/storage/emulated/0/Android/data/com.freeandroidtools.rootchecker" remove_path "/storage/emulated/0/Android/data/com.bluestacks.rootchecker" remove_path "/storage/emulated/0/Android/data/com.moonshine.checker" remove_path "/storage/emulated/0/Android/data/com.ramdroid.appdetector" remove_path "/storage/emulated/0/Android/data/com.smlj.rootcheck" remove_path "/storage/emulated/0/Android/data/com.devadvance.rootcloakplus" remove_path "/storage/emulated/0/Android/data/com.formyhm.hideroot" remove_path "/storage/emulated/0/Android/data/com.example.emulatordetector" remove_path "/storage/emulated/0/Android/data/com.vmcheck.detector" remove_path "/storage/emulated/0/Android/data/com.virtual.checker" remove_path "/storage/emulated/0/Android/data/com.antivm.detector" remove_path "/storage/emulated/0/Android/data/com.xposed.checker" remove_path "/storage/emulated/0/Android/data/com.google.snet.test" remove_path "/storage/emulated/0/Android/data/com.attestation.checker" remove_path "/storage/emulated/0/Android/data/com.integrity.check" remove_path "/storage/emulated/0/Android/data/com.native.checker" remove_path "/storage/emulated/0/Android/data/com.syscall.detector" remove_path "/storage/emulated/0/Android/data/com.memory.scan" remove_path "/storage/emulated/0/meow_detector.log" remove_path "/storage/emulated/0/keybox_status.json" } detector_obb() { # Same as detector_data remove_path "/storage/emulated/0/Android/obb/io.github.vvb2060.mahoshojo" remove_path "/storage/emulated/0/Android/obb/icu.nullptr.applistdetector" remove_path "/storage/emulated/0/Android/obb/icu.nullptr.nativetest" remove_path "/storage/emulated/0/Android/obb/com.byxiaorun.detector" remove_path "/storage/emulated/0/Android/obb/io.github.huskydg.memorydetector" remove_path "/storage/emulated/0/Android/obb/com.OrangeEnvironment.Detector" remove_path "/storage/emulated/0/Android/obb/com.Longze.detector.pro2" remove_path "/storage/emulated/0/Android/obb/rikka.safetynetchecker" remove_path "/storage/emulated/0/Android/obb/io.github.vvb2060.keyattestation" remove_path "/storage/emulated/0/Android/obb/com.android.nativetest" } detector_media() { # Same as detector_data remove_path "/storage/emulated/0/Android/media/icu.nullptr.nativetest" } tool_apps_data() { # Same as detector_data, but for tool apps remove_path "/storage/emulated/0/Android/data/bin.mt.plus" remove_path "/storage/emulated/0/Android/data/bin.mt.plus.canary" remove_path "/storage/emulated/0/Android/data/com.omarea.vtools" remove_path "/storage/emulated/0/Android/data/moe.shizuku.privileged.api" remove_path "/storage/emulated/0/Android/data/com.estrongs.android.pop" remove_path "/storage/emulated/0/Android/data/com.coolapk.market" mv "/storage/emulated/0/MT2" "/storage/emulated/0/MT" remove_path "/storage/emulated/0/bin.mt.termux" remove_path "/storage/emulated/0/com.termux" remove_path "/storage/emulated/0/xzr.hkf" remove_path "/storage/emulated/0/Download/WechatXposed" remove_path "/storage/emulated/0/WechatXposed" remove_path "/storage/emulated/0/Android/naki" remove_path "/storage/emulated/0/最新版隐藏配置.json" remove_path "/storage/emulated/0/rlgg" remove_path "/storage/emulated/legacy" remove_path "/storage/emulated/com.luckyzyx.luckytool" remove_path "/storage/emulated/0/Android/data/com.sevtinge.hyperceiler" remove_path "/storage/emulated/0/Android/data/com.coderstory.toolkit" } remote_control_data_apps() { # Same as detector_data, but for remote control apps remove_path "/storage/emulated/0/.anydesk" remove_path "/storage/emulated/0/Android/data/com.anydesk.anydeskandroid" remove_path "/storage/emulated/0/Android/data/com.teamviewer.teamviewer.market.mobile" remove_path "/storage/emulated/0/Android/data/com.teamviewer.quicksupport.market" remove_path "/storage/emulated/0/Android/data/com.sand.airdroid" remove_path "/storage/emulated/0/Android/data/com.sand.airmirror" remove_path "/storage/emulated/0/Android/data/com.koushikdutta.vysor" remove_path "/storage/emulated/0/Android/data/com.genymobile.scrcpy" remove_path "/storage/emulated/0/anydesk" remove_path "/storage/emulated/0/Android/data/com.microsoft.rdc.androidx" remove_path "/storage/emulated/0/Android/data/com.realvnc.viewer.android" remove_path "/storage/emulated/0/Android/data/com.splashtop.remote.pad.v2" remove_path "/storage/emulated/0/Android/data/com.dwservice.dwagent" remove_path "/storage/emulated/0/Android/data/com.carriez.flutter_hbb" remove_path "/storage/emulated/0/Android/data/com.carriez.flutter_hbbclient" remove_path "/storage/emulated/0/Android/data/com.rustdesk.rustdesk" remove_path "/storage/emulated/0/.rustdesk" remove_path "/storage/emulated/0/rustdesk" remove_path "/storage/emulated/0/Android/media/com.koushikdutta.vysor" remove_path "/storage/emulated/0/.vysor" remove_path "/storage/emulated/0/Vysor" } system_properties() { # For /data/property if exists remove_path "/data/property/persistent_properties" remove_path "/data/property" } tmp_data() { # For /data/local/tmp if exists remove_path "/data/local/tmp/shizuku" remove_path "/data/local/tmp/shizuku_starter" remove_path "/data/local/tmp/byyang" remove_path "/data/local/tmp/HyperCeiler" remove_path "/data/local/tmp/luckys" remove_path "/data/local/tmp/input_devices" remove_path "/data/local/tmp/resetprop" rm -rf /data/local/tmp/* 2>/dev/null # delete all on /data/local/tmp mkdir -p /data/local/tmp 2>/dev/null # recreate, but this working? } system_data() { # For /data/system if exists remove_path "/data/system/graphicsstats" remove_path "/data/system/package_cache" remove_path "/data/system/NoActive" remove_path "/data/system/Freezer" remove_path "/data/system/junge" remove_path "/data/swap_config.conf" } dev_paths() { # For /dev remove_path "/dev/memcg/scene_idle" remove_path "/dev/memcg/scene_active" remove_path "/dev/scene" remove_path "/dev/cpuset/scene-daemon" } user_data() { # For /data/user/0 remove_path "/data/user/0/com.juom" } reset_prop() { # Changing on build.prop file while [ "$(getprop sys.boot_completed)" != "1" ]; do sleep 1 done # USB / ADB resetprop sys.usb.adb.disabled 1 resetprop persist.sys.usb.config mtp resetprop sys.usb.config mtp resetprop sys.usb.state mtp resetprop service.adb.root 0 resetprop service.adb.tcp.port -1 resetprop --delete persist.service.adb.enable resetprop --delete persist.service.debuggable # Clear Detection HMA, Tools resetprop --delete persist.zygote.app_data_isolation resetprop --delete persist.hyperceiler.log.level resetprop --delete persist.com.luckyzyx.luckytool.log.level resetprop --delete persist.com.luckyzyx.luckytool.debug resetprop --delete persist.com.luckyzyx.luckytool.enable # Development mode resetprop persist.sys.developer_options 0 resetprop persist.sys.dev_mode 0 resetprop persist.sys.debuggable 0 settings put global development_settings_enabled 0 settings put global adb_enabled 0 settings put global oem_unlock_allowed 0 settings put global adb_enabled 0 settings put global development_settings_enabled 0 settings put global oem_unlock_allowed 0 settings put global adb_wifi_enabled 0 settings put global adb_wifi_port -1 # Debug flags resetprop ro.debuggable 0 resetprop ro.secure 1 resetprop ro.adb.secure 1 resetprop ro.build.type user resetprop ro.build.tags release-keys resetprop --delete persist.sys.developer_options resetprop --delete persist.sys.dev_mode resetprop ro.boot.verifiedbootstate green resetprop vendor.boot.verifiedbootstate green resetprop ro.boot.flash.locked 1 resetprop ro.boot.vbmeta.device_state locked resetprop vendor.boot.vbmeta.device_state locked resetprop ro.secureboot.lockstate locked resetprop ro.boot.warranty_bit 0 resetprop ro.boot.force_normal_boot 1 resetprop ro.boot.realme.lockstate 1 resetprop ro.boot.flash.locked 1 resetprop ro.boot.verifiedbootstate green resetprop ro.boot.vbmeta.device_state locked resetprop ro.boot.secureboot 1 resetprop ro.boot.veritymode enforcing resetprop ro.boot.verifiedbootstate green resetprop ro.boot.vbmeta.device_state locked resetprop ro.boot.secureboot enabled # OEM unlock resetprop ro.oem_unlock_supported 0 resetprop sys.oem_unlock_allowed 0 # SELinux (only fake if it is actually enforcing) if [ "$(getenforce 2>/dev/null)" = "Enforcing" ]; then resetprop ro.boot.selinux enforcing resetprop ro.build.selinux 1 fi # Emulator traces resetprop ro.kernel.qemu 0 resetprop ro.boot.qemu 0 resetprop ro.hardware.virtual_device 0 } odex_files() { # Delete all odex files su -c 'find /data/app -type f -name base.odex -delete' 2>/dev/null } main() { banner progress detector_data detector_obb detector_media tool_apps_data remote_control_data_apps system_properties tmp_data system_data dev_paths user_data reset_prop clear odex_files complete } main ================================================ FILE: Module/Yuri/hma.sh ================================================ #!/system/bin/sh # Define important paths and file names HMA_DIR="/data/user/0/org.frknkrc44.hma_oss/files" HMA_FILE="/data/user/0/org.frknkrc44.hma_oss/files/config.json" REMOTE_URL="https://raw.githubusercontent.com/YurikeyDev/yurikey/refs/heads/main/config.json" ORG_PATH="$PATH" log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [HMA_OSS] $1" } download() { PATH=/data/adb/magisk:/data/data/com.termux/files/usr/bin:$PATH if command -v curl >/dev/null 2>&1; then curl --connect-timeout 10 -Ls "$1" else busybox wget -T 10 --no-check-certificate -qO- "$1" fi PATH="$ORG_PATH" } if pm list packages | grep -q org.frknkrc44.hma_oss; then mkdir -p "$HMA_DIR" download "$REMOTE_URL" > "$HMA_FILE" || log_message "Error: HMA-oss configs download failed, please download and add it manually!" elif pm list packages | grep -q com.tsng.hidemyapplist; then log_message "HMA is deprecated and not supported, please use latest HMA-oss to get latest configs" else log_message "Error: HMA-oss not found, please install latest HMA-oss" return 1 fi chmod 777 "$HMA_FILE" chown u0_a0:u0_a0 "$HMA_FILE" ================================================ FILE: Module/Yuri/kill_all.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [KILL_ALL] $1" } # Start log_message "Start" # Writing log_message "Writing" PKGS="com.android.vending com.google.android.gsf com.google.android.gms com.google.android.contactkeys com.google.android.ims com.google.android.safetycore com.google.android.apps.walletnfcrel com.google.android.apps.nbu.paisa.user com.zhenxi.hunter com.reveny.nativecheck io.github.vvb2060.keyattestation io.github.vvb2060.mahoshojo icu.nullptr.nativetest com.android.nativetest io.liankong.riskdetector me.garfieldhan.holmes luna.safe.luna com.zhenxi.hunter gr.nikolasspyr.integritycheck com.youhu.laifu" for pkg in $PKGS; do if ! am force-stop "$pkg" >/dev/null 2>&1; then log_message "Error: Failed to force-stop $pkg" return 1 fi if ! pm clear "$pkg" >/dev/null 2>&1; then log_message "Error: Failed to clear data for $pkg" return 1 fi done # Finish log_message "Finish" ================================================ FILE: Module/Yuri/kill_google_process.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [KILL_GOOGLE] $1" } # Start log_message "Start" # Writing log_message "Writing" PKGS="com.android.vending" for pkg in $PKGS; do if ! am force-stop "$pkg" >/dev/null 2>&1; then log_message "Error: Failed to force-stop $pkg" return 1 fi if ! cmd package trim-caches 0 "$pkg" >/dev/null 2>&1; then log_message "Error: Failed to clear cache for $pkg" return 1 fi done # Finish log_message "Finish" ================================================ FILE: Module/Yuri/pif.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [PIF] $1" } log_message "Start" TARGET_FILE="/data/adb/modules/playintegrityfix" # Check if the directory exists if [ ! -d "$TARGET_FILE" ] && [ ! -f "$TARGET_FILE/module.prop" ]; then log_message "Error: Play Integrity Fix is not found, please install the latest Play Integrity Fix." return 1 fi fetch_pif () { # Extract the name from module.prop MODULE_NAME=$(grep "^name=" "$TARGET_FILE/module.prop" | cut -d= -f2-) if [ "$MODULE_NAME" = "Play Integrity Fix [INJECT]" ]; then log_message "Detected Play Integrity Fix [INJECTS]. Executing..." sh "$TARGET_FILE/autopif_ota.sh" || true sh "$TARGET_FILE/autopif.sh" elif [ "$MODULE_NAME" = "Play Integrity Fork" ]; then log_message "Detected Play Integrity Fork. Executing..." sh "$TARGET_FILE/autopif4.sh" -m || return else log_message "Unknown module $MODULE_NAME" log_message "Please use Play Integrity Fix [INJECTS] or Play Integrity Fork to update fingeprint" return fi } update_pif () { if ! fetch_pif; then log_message "Failed to update fingerprints!" return fi } # Start main logic log_message "Writing" # Ensure directory exists before proceeding mkdir -p "$TARGET_FILE" update_pif log_message "Finish" ================================================ FILE: Module/Yuri/rka/jsonarray.sh ================================================ #!/system/bin/sh # jsonarray — flat JSON array manipulation library # Contributed by mhmrdd # # ja_count -> integer # ja_get -> raw value # ja_has -> exit 0/1 # ja_index -> 1-based index # ja_id -> id string # ja_ids -> one id per line # ja_keys -> one key per line # ja_dump -> key\tvalue per line # ja_search -> matching indices per line # ja_add [k=v ...] -> prints assigned id # ja_set [t] -> exit 0/1 (t: s/n/b) # ja_del -> exit 0/1 # ja_delfield -> exit 0/1 # ja_raw -> full JSON _JA_AWK=' function split_objects(json, objs, n, i, c, prev, in_str, depth, start) { n = 0; in_str = 0; depth = 0 for (i = 1; i <= length(json); i++) { c = substr(json, i, 1) prev = (i > 1) ? substr(json, i-1, 1) : "" if (c == "\"" && prev != "\\") { in_str = !in_str; continue } if (in_str) continue if (c == "{") { depth++; if (depth == 1) start = i } else if (c == "}") { depth--; if (depth == 0) { n++; objs[n] = substr(json, start, i - start + 1) } } } return n } function get_field(obj, fname, i, c, kstart, kend, key, vstart, val) { i = 1 while (i <= length(obj)) { c = substr(obj, i, 1) if (c == "\"") { kstart = i + 1 for (i = kstart; i <= length(obj); i++) if (substr(obj, i, 1) == "\"" && substr(obj, i-1, 1) != "\\") break kend = i - 1 key = substr(obj, kstart, kend - kstart + 1) i++ while (i <= length(obj)) { c = substr(obj, i, 1); if (c != ":" && c != " " && c != "\t") break; i++ } c = substr(obj, i, 1) if (c == "\"") { vstart = i; i++ while (i <= length(obj)) if (substr(obj, i, 1) == "\"" && substr(obj, i-1, 1) != "\\") break; else i++ val = substr(obj, vstart, i - vstart + 1) } else { vstart = i while (i <= length(obj)) { c = substr(obj, i, 1); if (c == "," || c == "}" || c == " " || c == "\n" || c == "\r" || c == "\t") break; i++ } val = substr(obj, vstart, i - vstart) } if (key == fname) return val } i++ } return "" } function unquote(v) { if (substr(v, 1, 1) == "\"" && substr(v, length(v), 1) == "\"") return substr(v, 2, length(v) - 2) return v } function get_keys(obj, keys, n, i, c, kstart, kend, key) { n = 0; i = 1 while (i <= length(obj)) { c = substr(obj, i, 1) if (c == "\"") { kstart = i + 1 for (i = kstart; i <= length(obj); i++) if (substr(obj, i, 1) == "\"" && substr(obj, i-1, 1) != "\\") break kend = i - 1; key = substr(obj, kstart, kend - kstart + 1); i++ while (i <= length(obj) && (substr(obj,i,1)==" " || substr(obj,i,1)=="\t")) i++ if (substr(obj, i, 1) == ":") { n++; keys[n] = key; i++ while (i <= length(obj) && (substr(obj,i,1)==" " || substr(obj,i,1)=="\t")) i++ c = substr(obj, i, 1) if (c == "\"") { i++; while (i <= length(obj)) { if (substr(obj,i,1) == "\"" && substr(obj,i-1,1) != "\\") break; i++ } } else { while (i <= length(obj)) { c = substr(obj, i, 1); if (c == "," || c == "}") break; i++ } } } } i++ } return n } function rebuild_object(obj, skip_field, keys, nk, k, v, out, sep) { nk = get_keys(obj, keys); out = "{"; sep = "" for (k = 1; k <= nk; k++) { if (keys[k] == skip_field) continue v = get_field(obj, keys[k]); out = out sep "\"" keys[k] "\":" v; sep = "," } return out "}" } function set_field_in_obj(obj, fname, fval, keys, nk, k, v, out, sep, found) { nk = get_keys(obj, keys); out = "{"; sep = ""; found = 0 for (k = 1; k <= nk; k++) { v = get_field(obj, keys[k]) if (keys[k] == fname) { v = fval; found = 1 } out = out sep "\"" keys[k] "\":" v; sep = "," } if (!found) out = out sep "\"" fname "\":" fval return out "}" } function rebuild_array(objs, count, out, i) { out = "[" for (i = 1; i <= count; i++) { if (i > 1) out = out ","; out = out objs[i] } return out "]" } function find_entry(objs, count, target, i, idx) { for (i = 1; i <= count; i++) if (unquote(get_field(objs[i], "id")) == target) return i idx = int(target) if (idx >= 1 && idx <= count) return idx return 0 } { if (NR == 1) json = $0; else json = json "\n" $0 } END { count = split_objects(json, objs) if (OP == "count") { print count } else if (OP == "get") { idx = find_entry(objs, count, P1) if (idx == 0) exit 1 print unquote(get_field(objs[idx], P2)) } else if (OP == "has") { exit (find_entry(objs, count, P1) > 0) ? 0 : 1 } else if (OP == "index") { for (i = 1; i <= count; i++) if (unquote(get_field(objs[i], "id")) == P1) { print i; exit 0 } exit 1 } else if (OP == "id") { idx = int(P1) if (idx >= 1 && idx <= count) { print unquote(get_field(objs[idx], "id")); exit 0 } exit 1 } else if (OP == "ids") { for (i = 1; i <= count; i++) print unquote(get_field(objs[i], "id")) } else if (OP == "keys") { idx = find_entry(objs, count, P1) if (idx == 0) exit 1 nk = get_keys(objs[idx], keys) for (k = 1; k <= nk; k++) print keys[k] } else if (OP == "dump") { idx = find_entry(objs, count, P1) if (idx == 0) exit 1 nk = get_keys(objs[idx], keys) for (k = 1; k <= nk; k++) printf "%s\t%s\n", keys[k], unquote(get_field(objs[idx], keys[k])) } else if (OP == "search") { needle = tolower(P2) for (i = 1; i <= count; i++) { v = tolower(unquote(get_field(objs[i], P1))) if (index(v, needle) > 0) print i } } else if (OP == "raw") { print rebuild_array(objs, count) } else if (OP == "del") { idx = find_entry(objs, count, P1) if (idx == 0) exit 1 nc = 0 for (i = 1; i <= count; i++) { if (i == idx) continue; nc++; no[nc] = objs[i] } print rebuild_array(no, nc) } else if (OP == "set") { vtype = (P4 == "") ? "s" : P4 if (vtype == "s") fval = "\"" P3 "\""; else fval = P3 idx = find_entry(objs, count, P1) if (idx == 0) exit 1 objs[idx] = set_field_in_obj(objs[idx], P2, fval) print rebuild_array(objs, count) } else if (OP == "delfield") { idx = find_entry(objs, count, P1) if (idx == 0) exit 1 objs[idx] = rebuild_object(objs[idx], P2) print rebuild_array(objs, count) } else if (OP == "add") { new_obj = "{"; sep = "" n = split(PAIRS, plines, "\n") for (p = 1; p <= n; p++) { eq = index(plines[p], "=") if (eq == 0) continue k = substr(plines[p], 1, eq - 1) v = substr(plines[p], eq + 1) if (v == "true" || v == "false") fval = v else if (v ~ /^[0-9]+$/) fval = v else fval = "\"" v "\"" new_obj = new_obj sep "\"" k "\":" fval; sep = "," } new_obj = new_obj "}" count++; objs[count] = new_obj print rebuild_array(objs, count) } else exit 1 } ' _ja_ensure() { [ ! -f "$1" ] && printf '[]' > "$1"; } _ja_uuid() { cat /proc/sys/kernel/random/uuid 2>/dev/null || printf '%s-%s' "$(date +%s)" "$$"; } ja_count() { _ja_ensure "$1"; awk -v OP=count "$_JA_AWK" "$1"; } ja_get() { _ja_ensure "$1"; awk -v OP=get -v P1="$2" -v P2="$3" "$_JA_AWK" "$1"; } ja_has() { _ja_ensure "$1"; awk -v OP=has -v P1="$2" "$_JA_AWK" "$1" >/dev/null 2>&1; } ja_index() { _ja_ensure "$1"; awk -v OP=index -v P1="$2" "$_JA_AWK" "$1"; } ja_id() { _ja_ensure "$1"; awk -v OP=id -v P1="$2" "$_JA_AWK" "$1"; } ja_ids() { _ja_ensure "$1"; awk -v OP=ids "$_JA_AWK" "$1"; } ja_keys() { _ja_ensure "$1"; awk -v OP=keys -v P1="$2" "$_JA_AWK" "$1"; } ja_dump() { _ja_ensure "$1"; awk -v OP=dump -v P1="$2" "$_JA_AWK" "$1"; } ja_search(){ _ja_ensure "$1"; awk -v OP=search -v P1="$2" -v P2="$3" "$_JA_AWK" "$1"; } ja_raw() { _ja_ensure "$1"; awk -v OP=raw "$_JA_AWK" "$1"; } ja_add() { _f=$1; shift; _ja_ensure "$_f" _has_id=0 for _a in "$@"; do case "$_a" in id=*) _has_id=1 ;; esac; done _pairs="" if [ "$_has_id" -eq 0 ]; then _uid=$(_ja_uuid) _pairs="id=$_uid" fi for _a in "$@"; do [ -n "$_pairs" ] && _pairs="$_pairs $_a" || _pairs="$_a" done _pairs_esc=$(printf '%s\n' "$_pairs" | awk '{gsub(/\\/,"\\\\")}{if(NR>1)printf "\\n";printf "%s",$0}') _out=$(awk -v OP=add -v PAIRS="$_pairs_esc" "$_JA_AWK" "$_f") || return 1 printf '%s\n' "$_out" > "$_f" if [ "$_has_id" -eq 0 ]; then printf '%s\n' "$_uid" else for _a in "$@"; do case "$_a" in id=*) printf '%s\n' "${_a#id=}"; break ;; esac; done fi } ja_set() { _ja_ensure "$1" _out=$(awk -v OP=set -v P1="$2" -v P2="$3" -v P3="$4" -v P4="$5" "$_JA_AWK" "$1") || return 1 printf '%s\n' "$_out" > "$1" } ja_del() { _ja_ensure "$1" _out=$(awk -v OP=del -v P1="$2" "$_JA_AWK" "$1") || return 1 printf '%s\n' "$_out" > "$1" } ja_delfield() { _ja_ensure "$1" _out=$(awk -v OP=delfield -v P1="$2" -v P2="$3" "$_JA_AWK" "$1") || return 1 printf '%s\n' "$_out" > "$1" } ================================================ FILE: Module/Yuri/rka/lspmcfg.sh ================================================ #!/system/bin/sh # # This file is part of LSPosed. # # LSPosed 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. # # LSPosed 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. # # You should have received a copy of the GNU General Public License # along with LSPosed. If not, see . # # Copyright (C) 2021 LSPosed Contributors # # lspmcfg — module_configs database interface # Contributed by mhmrdd # # lsp_get -> raw value # lsp_type -> string|int|long|bool # lsp_set [type] -> exit 0/1 # lsp_del -> exit 0/1 # lsp_has -> exit 0/1 # lsp_keys -> one key per line # lsp_groups -> one group per line # lsp_dump -> key\ttype\tvalue per line # lsp_raw -> hex blob # lsp_count -> integer # # Override before sourcing: LSP_DB, LSP_SQLITE, LSP_UID LSP_DB="${LSP_DB:-/data/adb/lspd/config/modules_config.db}" LSP_UID="${LSP_UID:-$(id -u)}" if [ -z "$LSP_SQLITE" ]; then _lsp_abi=$(getprop ro.product.cpu.abi 2>/dev/null) LSP_SQLITE="/data/adb/modules/Yurikey/Yuri/rka/${_lsp_abi}/sqlite3" fi _LSP_SCHEMA_OK="" _LSP_EXPECTED_COLS="module_pkg_name user_id group_name key_name data" _lsp_hex_to_str() { printf '%s\n' "$1" | xxd -r -p; } _lsp_str_to_hex() { printf '%s' "$1" | xxd -p | tr -d '\n' | tr 'a-f' 'A-F'; } _lsp_query() { "$LSP_SQLITE" "$LSP_DB" "$1"; } _lsp_check_schema() { [ -n "$_LSP_SCHEMA_OK" ] && return 0 if [ ! -f "$LSP_DB" ]; then echo "lspmcfg: database not found: $LSP_DB" >&2 return 1 fi _tables=$(_lsp_query "SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;") case "$_tables" in *module_configs*) ;; *) echo "lspmcfg: table 'module_configs' missing" >&2 echo "lspmcfg: tables found: $_tables" >&2 return 1 ;; esac _cols=$(_lsp_query "PRAGMA table_info(module_configs);" | awk -F'|' '{print $2}' | tr '\n' ' ') _missing="" for _need in $_LSP_EXPECTED_COLS; do case "$_cols" in *${_need}*) ;; *) _missing="$_missing $_need" ;; esac done if [ -n "$_missing" ]; then echo "lspmcfg: incompatible schema, missing:$_missing" >&2 echo "lspmcfg: columns found: $_cols" >&2 return 1 fi _LSP_SCHEMA_OK=1 return 0 } _lsp_query_blob() { _lsp_check_schema || return 1 _lsp_query \ "SELECT hex(data) FROM module_configs \ WHERE module_pkg_name='$1' \ AND user_id=$LSP_UID \ AND \"group_name\"='$2' \ AND key_name='$3';" } _lsp_write_blob() { _lsp_check_schema || return 1 _lsp_query \ "INSERT OR REPLACE INTO module_configs \ (module_pkg_name, user_id, \"group_name\", key_name, data) \ VALUES ('$1', $LSP_UID, '$2', '$3', x'$4');" } _lsp_delete_row() { _lsp_check_schema || return 1 _lsp_query \ "DELETE FROM module_configs \ WHERE module_pkg_name='$1' \ AND user_id=$LSP_UID \ AND \"group_name\"='$2' \ AND key_name='$3';" } _lsp_detect_type() { _hex=$1 [ -z "$_hex" ] && return 1 _tok=${_hex:8:2} case "$_tok" in 74) echo string ;; 73) case "$_hex" in *6A6176612E6C616E672E496E7465676572*) echo int ;; *6A6176612E6C616E672E4C6F6E67*) echo long ;; *6A6176612E6C616E672E426F6F6C65616E*) echo bool ;; *) return 1 ;; esac ;; *) return 1 ;; esac } _lsp_extract_value() { _hex=$1 [ -z "$_hex" ] && return 1 _tok=${_hex:8:2} case "$_tok" in 74) _len=$((16#${_hex:10:4})) _lsp_hex_to_str "${_hex:14:$((_len*2))}" ;; 73) case "$_hex" in *6A6176612E6C616E672E496E7465676572*) printf '%d' "$((16#${_hex: -8}))" ;; *6A6176612E6C616E672E4C6F6E67*) printf '%s' "${_hex: -16}" ;; *6A6176612E6C616E672E426F6F6C65616E*) case "${_hex: -2}" in 01) printf 'true' ;; 00) printf 'false' ;; esac ;; *) return 1 ;; esac ;; *) return 1 ;; esac } _lsp_build_blob() { _type=$1 _val=$2 _hdr="ACED0005" case "$_type" in string) _vh=$(_lsp_str_to_hex "$_val") _ln=$(printf '%04X' "${#_val}") printf '%s' "${_hdr}74${_ln}${_vh}" ;; int) _ch=$(_lsp_str_to_hex "java.lang.Integer") _cl=$(printf '%04X' 17) _fh=$(_lsp_str_to_hex "value") _fl=$(printf '%04X' 5) _vx=$(printf '%08X' "$_val") printf '%s' "${_hdr}7372${_cl}${_ch}12E2A0A4F781873802000149${_fl}${_fh}7870${_vx}" ;; long) _ch=$(_lsp_str_to_hex "java.lang.Long") _cl=$(printf '%04X' 14) _fh=$(_lsp_str_to_hex "value") _fl=$(printf '%04X' 5) _vx=$(printf '%016X' "$_val") printf '%s' "${_hdr}7372${_cl}${_ch}3B8BE490CC8F23DF0200014A${_fl}${_fh}7870${_vx}" ;; bool) _ch=$(_lsp_str_to_hex "java.lang.Boolean") _cl=$(printf '%04X' 17) _fh=$(_lsp_str_to_hex "value") _fl=$(printf '%04X' 5) case "$_val" in true|1) _vx="01" ;; false|0) _vx="00" ;; *) return 1 ;; esac printf '%s' "${_hdr}7372${_cl}${_ch}CD207280D59CFAEE0200015A${_fl}${_fh}7870${_vx}" ;; *) return 1 ;; esac } lsp_get() { _hex=$(_lsp_query_blob "$1" "$2" "$3") [ -z "$_hex" ] && return 1 _lsp_extract_value "$_hex" echo } lsp_type() { _hex=$(_lsp_query_blob "$1" "$2" "$3") _lsp_detect_type "$_hex" } lsp_set() { _type=${5:-string} _blob=$(_lsp_build_blob "$_type" "$4") || return 1 _blob=$(printf '%s' "$_blob" | tr 'a-f' 'A-F') _lsp_write_blob "$1" "$2" "$3" "$_blob" } lsp_del() { _lsp_delete_row "$1" "$2" "$3"; } lsp_has() { _hex=$(_lsp_query_blob "$1" "$2" "$3") [ -n "$_hex" ] } lsp_keys() { _lsp_check_schema || return 1 _lsp_query \ "SELECT key_name FROM module_configs \ WHERE module_pkg_name='$1' \ AND user_id=$LSP_UID \ AND \"group_name\"='$2' \ ORDER BY rowid;" } lsp_groups() { _lsp_check_schema || return 1 _lsp_query \ "SELECT DISTINCT \"group_name\" FROM module_configs \ WHERE module_pkg_name='$1' \ AND user_id=$LSP_UID \ ORDER BY \"group_name\";" } lsp_dump() { _mod=$1; _grp=$2 lsp_keys "$_mod" "$_grp" | while IFS= read -r _k; do [ -z "$_k" ] && continue _hex=$(_lsp_query_blob "$_mod" "$_grp" "$_k") _t=$(_lsp_detect_type "$_hex") _v=$(_lsp_extract_value "$_hex") printf '%s\t%s\t%s\n' "$_k" "$_t" "$_v" done } lsp_raw() { _lsp_query_blob "$1" "$2" "$3"; } lsp_count() { _lsp_check_schema || return 1 _lsp_query \ "SELECT count(*) FROM module_configs \ WHERE module_pkg_name='$1' \ AND user_id=$LSP_UID \ AND \"group_name\"='$2';" } ================================================ FILE: Module/Yuri/security_patch.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [SET_SECURITY_PATCH] $1" } log_message "Start" sp="/data/adb/tricky_store/security_patch.txt" # Get current year / month / day current_year=$(date +%Y) || { log_message "Error: Failed to get current year" return 1 } current_month=$(date +%m | sed 's/^0*//') || { log_message "Error: Failed to get current month" return 1 } current_day=$(date +%d | sed 's/^0*//') || { log_message "Error: Failed to get current day" return 1 } # Logic: Security Patch drop on the 5th. if [ "$current_day" -lt 10 ]; then # Before the 5th: Use previous month if [ "$current_month" -eq 1 ]; then target_month=12 target_year=$((current_year - 1)) else target_month=$((current_month - 1)) target_year=$current_year fi else # On or after the 10th: Use current month target_month=$current_month target_year=$current_year fi # Format the target month to always have two digits (e.g., 03) formatted_month=$(printf "%02d" "$target_month") || { log_message "Error: Failed to format month" return 1 } patch_date="${target_year}-${formatted_month}-05" log_message "Writing" # Write correct Trickystore format cat > "$sp" <> "$t"; then log_message "Error: Failed to write $entry to $t" return 1 fi done log_message "Finish" ================================================ FILE: Module/Yuri/target_txt.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [SET_TARGET] $1" } log_message "Start" t='/data/adb/tricky_store/target.txt' tees='/data/adb/tricky_store/tee_status' # tee status teeBroken="false" if [ -f "$tees" ]; then teeBroken=$(grep -E '^teeBroken=' "$tees" | cut -d '=' -f2 2>/dev/null || echo "false") if [ -z "$teeBroken" ]; then log_message "Error: Failed to parse teeBroken status" return 1 fi fi # add list special rm -rf "$t" fixed_targets="\ android com.android.vending com.google.android.gsf com.google.android.gms com.google.android.ims io.github.vvb2060.keyattestation? io.github.vvb2060.mahoshojo? io.github.qwq233.keyattestation? com.google.android.contactkeys com.google.android.safetycore com.google.android.apps.walletnfcrel com.google.android.apps.nbu.paisa.user com.reveny.nativecheck? icu.nullptr.nativetest? com.android.nativetest? io.liankong.riskdetector? me.garfieldhan.holmes? luna.safe.luna? com.zhenxi.hunter? com.studio.duckdetector? com.eltavine.duckdetector? com.rem01gaming.disclosure? wu.keyChain.test? com.kikyps.crackme? com.chunqiunativecheck?" for entry in $fixed_targets; do if ! echo "$entry" >> "$t"; then log_message "Error: Failed to write $entry to $t" return 1 fi done # add list log_message "Writing" add_packages() { pkgs=$(pm list packages "$1" 2>/dev/null) if [ $? -ne 0 ] || [ -z "$pkgs" ]; then log_message "Error: Failed to list packages with flag $1" return 1 fi echo "$pkgs" | cut -d ":" -f 2 | while read -r pkg; do if [ -n "$pkg" ] && ! grep -q "^$pkg" "$t"; then if [ "$teeBroken" = "true" ]; then if ! echo "$pkg?" >> "$t"; then log_message "Error: Failed to write $pkg? to $t" return 1 fi else if ! echo "$pkg" >> "$t"; then log_message "Error: Failed to write $pkg to $t" return 1 fi fi fi done } # add user apps add_packages "-3" # add system apps add_packages "-s" log_message "Finish" ================================================ FILE: Module/Yuri/yuri_keybox.sh ================================================ #!/system/bin/sh # Define important paths and file names TRICKY_DIR="/data/adb/tricky_store" REMOTE_URL="https://raw.githubusercontent.com/Yurii0307/yurikey/main/key" REMOTE_FILE="$TRICKY_DIR/keybox" TARGET_FILE="$TRICKY_DIR/keybox.xml" BACKUP_FILE="$TRICKY_DIR/keybox.xml.bak" DECODE_FILE="$TRICKY_DIR/keybox_decode" DEPENDENCY_MODULE="/data/adb/modules/tricky_store" DEPENDENCY_MODULE_UPDATE="/data/adb/modules_update/tricky_store" BBIN="/data/adb/Yurikey/bin" ORG_PATH="$PATH" log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [YURI_KEYBOX] $1" } log_message "Start" # Check if Tricky Store module is installed (required dependency) if [ ! -d "$DEPENDENCY_MODULE_UPDATE" ] && [ ! -d "$DEPENDENCY_MODULE" ]; then log_message "Error: Tricky Store module file not found!" log_message "Please install Tricky Store before using Yuri Keybox." return 0 fi # Backup keybox before fetching if [ -f "$TARGET_FILE" ]; then mv "$TARGET_FILE" "$BACKUP_FILE" fi download() { PATH=/data/adb/magisk:/data/data/com.termux/files/usr/bin:$PATH if command -v curl >/dev/null 2>&1; then curl --connect-timeout 10 -Ls "$1" else busybox wget -T 10 --no-check-certificate -qO- "$1" fi PATH="$ORG_PATH" } # Function to download the remote keybox get_keybox() { download "$REMOTE_URL" > "$REMOTE_FILE" || log_message "Error: Keybox download failed, please download and add it manually!" if ! base64 -d "$REMOTE_FILE" > "$DECODE_FILE" 2>/dev/null; then log_message "Error: Base64 decode failed!" rm -f "$REMOTE_FILE" mv "$BACKUP_FILE" "$TARGET_FILE" return 1 fi rm -f "$REMOTE_FILE" mv "$DECODE_FILE" "$TARGET_FILE" return 0 } # Function to update the keybox file update_keybox() { if ! get_keybox; then log_message "Failed to fetch keybox!" return fi } # Start main logic log_message "Writing" mkdir -p "$TRICKY_DIR" # Make sure the directory exists update_keybox # Begin the update process log_message "Finish" ================================================ FILE: Module/Yuri/yurirka.sh ================================================ #!/system/bin/sh # yurirka — RKA provisioning for PassIt # Contributed by mhmrdd SCRDIR=$(cd "$(dirname "$0")" && pwd) . "$SCRDIR/rka/jsonarray.sh" MOD="io.github.mhmrdd.libxposed.ps.passit" pm path "$MOD" >/dev/null 2>&1 || exit 1 CFG="/data/user/$(id -u)/${MOD}/files/rka_configs.json" IDFILE="/data/local/tmp/yurid" RKA_NAME="Yuri RKA" RKA_HOST="rp.mhmrdd.me" RKA_TCP=59416 RKA_UDP=0 RKA_TOKEN="yurikey-5b70e270d6d69cd399c59ca3d62ccf6e" prev_id="" if [ -f "$IDFILE" ]; then prev_id=$(cat "$IDFILE" 2>/dev/null) case "$prev_id" in ????????-????-????-????-????????????) ;; *) prev_id="" ;; esac fi if [ -n "$prev_id" ] && ja_has "$CFG" "$prev_id"; then ja_set "$CFG" "$prev_id" name "$RKA_NAME" ja_set "$CFG" "$prev_id" host "$RKA_HOST" ja_set "$CFG" "$prev_id" tcpPort "$RKA_TCP" n ja_set "$CFG" "$prev_id" udpPort "$RKA_UDP" n ja_set "$CFG" "$prev_id" authToken "$RKA_TOKEN" ja_set "$CFG" "$prev_id" isActive true b else prev_id=$(ja_add "$CFG" \ "name=$RKA_NAME" \ "host=$RKA_HOST" \ "tcpPort=$RKA_TCP" \ "udpPort=$RKA_UDP" \ "authToken=$RKA_TOKEN" \ "isActive=true") printf '%s' "$prev_id" > "$IDFILE" fi for _oid in $(ja_ids "$CFG"); do [ "$_oid" = "$prev_id" ] && continue ja_set "$CFG" "$_oid" isActive false b done ================================================ FILE: Module/Yuri/znctl.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [ZYGISK_NEXT] $1" } log_message "Start" TARGET_FILE="/data/adb/modules/zygisksu/module.prop" SCRIPT_FILE="/data/adb/modules/zygisksu/bin/zygiskd" REQUIRED="1.3.0" # Check if Zygisk Next installed if [ ! -f "$TARGET_FILE" ]; then log_message "Error: Zygisk Next is not found, please install latest Zygisk Next." return 1 fi # Extract the version string CURRENT=$(grep "^version=" "$TARGET_FILE" | cut -d'=' -f2 | cut -d' ' -f1) # Compare versions if [ "$(printf '%s\n%s' "$CURRENT" "$VERSION" | sort -V | head -n1)" != "$CURRENT" ]; then log_messgae "Error: Zygisk Next version is too low, please install latest Zygisk Next." return 1 fi znctl() { [ -n "$1" ] && "$SCRIPT_FILE" "$@" 2>/dev/null } # Function to change configs zn_configs() { znctl enforce-denylist just_umount znctl memory-type anonymous znctl linker builtin } set_zn_configs () { if ! zn_configs; then log_message "Failed to update configs!" return fi } # Start main logic log_message "Writing" mkdir -p "$SCRIPT_FILE" # Make sure the directory exists set_zn_configs # Begin the update process log_message "Finish" ================================================ FILE: Module/action.sh ================================================ MODPATH="${0%/*}" # ensure not running in busybox ash standalone shell set +o standalone unset ASH_STANDALONE for SCRIPT in \ "kill_google_process.sh" \ "target_txt.sh" \ "security_patch.sh" \ "boot_hash.sh" \ "yuri_keybox.sh" do if ! sh "$MODPATH/Yuri/$SCRIPT"; then echo "- Error: $SCRIPT failed. Aborting..." exit 1 fi done sh "$MODPATH/Yuri/pif.sh" if [ -f /data/adb/modules_update/Yurikey/webroot/common/device-info.sh ]; then sh /data/adb/modules_update/Yurikey/webroot/common/device-info.sh elif [ -f /data/adb/modules/yurikey/webroot/common/device-info.sh ]; then sh /data/adb/modules/yurikey/webroot/common/device-info.sh fi echo -e "$(date +%Y-%m-%d\ %H:%M:%S) Meets Strong Integrity with Yurikey Manager✨✨" ================================================ FILE: Module/customize.sh ================================================ #!/system/bin/sh # Define important paths and file names TRICKY_DIR="/data/adb/tricky_store" REMOTE_URL="https://raw.githubusercontent.com/Yurii0307/yurikey/main/key" REMOTE_FILE="$TRICKY_DIR/keybox" TARGET_FILE="$TRICKY_DIR/keybox.xml" BACKUP_FILE="$TRICKY_DIR/keybox.xml.bak" DECODE_FILE="$TRICKY_DIR/keybox_decode" DEPENDENCY_MODULE="/data/adb/modules/tricky_store" DEPENDENCY_MODULE_UPDATE="/data/adb/modules_update/tricky_store" BBIN="/data/adb/Yurikey/bin" ORG_PATH="$PATH" # Show UI banner ui_print "" ui_print "*********************************" ui_print "*****Yuri Keybox Installer*******" ui_print "*********************************" ui_print "" # Remove old module if legacy path exists (lowercase 'yurikey') if [ -d "/data/adb/modules/yurikey" ]; then touch /data/adb/modules/yurikey/remove fi # Check if Tricky Store module is installed (required dependency) if [ ! -d "$DEPENDENCY_MODULE_UPDATE" ] && [ ! -d "$DEPENDENCY_MODULE" ]; then ui_print "- Error: Tricky Store module file not found!" ui_print "- Please install Tricky Store before using Yuri Keybox." return 0 fi # A few wipes if [ -d "$BBIN" ]; then rm -rf $BBIN fi download() { PATH=/data/adb/magisk:/data/data/com.termux/files/usr/bin:$PATH if command -v curl >/dev/null 2>&1; then curl --connect-timeout 10 -Ls "$1" else busybox wget -T 10 --no-check-certificate -qO- "$1" fi PATH="$ORG_PATH" } # Function to download the remote keybox get_keybox() { download "$REMOTE_URL" > "$REMOTE_FILE" || ui_print "Error: Keybox download failed, please add keybox manually!" if ! base64 -d "$REMOTE_FILE" > "$DECODE_FILE" 2>/dev/null; then ui_print "- Error: Base64 decode failed!" return 1 fi return 0 } # Function to update the keybox file update_keybox() { ui_print "- Fetching remote keybox..." if ! get_keybox; then ui_print "- Failed to fetch keybox!" return fi # Check if keybox already exists if [ -f "$TARGET_FILE" ]; then # If the new one is identical, skip update if cmp -s "$TARGET_FILE" "$DECODE_FILE"; then ui_print "- Existing Yuri Keybox found. No changes made." rm -f "$REMOTE_FILE" return else # If the file differs, back up the old one ui_print "- Existing keybox is not by Yuri." ui_print "- Creating a backup keybox..." mv "$TARGET_FILE" "$BACKUP_FILE" mv "$DECODE_FILE" "$TARGET_FILE" fi else ui_print "- No keybox found! Creating a new one..." mv "$DECODE_FILE" "$TARGET_FILE" rm -f "$REMOTE_FILE" fi } # Start main logic ui_print "- Checking if there is an Yuri Keybox..." mkdir -p "$TRICKY_DIR" # Make sure the directory exists update_keybox # Begin the update process # Run bundled device-info.sh if present (already verified) DEVICE_INFO_SCRIPT="$TMPDIR/webroot/common/device-info.sh" if [ -f "$DEVICE_INFO_SCRIPT" ]; then sh "$DEVICE_INFO_SCRIPT" else # fallback: run already-installed one if [ -f /data/adb/modules_update/Yurikey/webroot/common/device-info.sh ]; then sh /data/adb/modules_update/Yurikey/webroot/common/device-info.sh elif [ -f /data/adb/modules/yurikey/webroot/common/device-info.sh ]; then sh /data/adb/modules/yurikey/webroot/common/device-info.sh fi fi ================================================ FILE: Module/module.prop ================================================ id=Yurikey name=Yurikey Manager version=v3.0.5 versionCode=305 author=Yurikey Dev banner=https://raw.githubusercontent.com/Yurii0307/yurikey/main/doc/banner.webp description=A systemless module to get strong integrity so easily updateJson=https://raw.githubusercontent.com/Yurii0307/yurikey/main/update.json ================================================ FILE: Module/service.sh ================================================ #!/system/bin/sh # Function to check and reset property if it doesn't match the expected value check_reset_prop() { local NAME=$1 local EXPECTED=$2 local VALUE=$(resetprop $NAME) [ -z $VALUE ] || [ $VALUE = $EXPECTED ] || resetprop -n $NAME $EXPECTED } # Function to check if a property contains a specific string and reset it contains_reset_prop() { local NAME=$1 local CONTAINS=$2 local NEWVAL=$3 [[ "$(resetprop $NAME)" = *"$CONTAINS"* ]] && resetprop -n $NAME $NEWVAL } # Wait for boot completion before applying changes resetprop -w sys.boot_completed 0 # Bootloader and Verified Boot properties check_reset_prop "ro.boot.vbmeta.device_state" "locked" check_reset_prop "ro.boot.verifiedbootstate" "green" check_reset_prop "ro.boot.flash.locked" "1" check_reset_prop "ro.boot.veritymode" "enforcing" check_reset_prop "ro.boot.warranty_bit" "0" check_reset_prop "ro.warranty_bit" "0" check_reset_prop "ro.debuggable" "0" check_reset_prop "ro.force.debuggable" "0" check_reset_prop "ro.secure" "1" check_reset_prop "ro.adb.secure" "1" check_reset_prop "ro.build.type" "user" check_reset_prop "ro.build.tags" "release-keys" check_reset_prop "ro.vendor.boot.warranty_bit" "0" check_reset_prop "ro.vendor.warranty_bit" "0" check_reset_prop "vendor.boot.vbmeta.device_state" "locked" check_reset_prop "vendor.boot.verifiedbootstate" "green" check_reset_prop "sys.oem_unlock_allowed" "0" # MIUI specific properties check_reset_prop "ro.secureboot.lockstate" "locked" # Realme specific properties check_reset_prop "ro.boot.realmebootstate" "green" check_reset_prop "ro.boot.realme.lockstate" "1" # Hide that we booted from recovery when magisk is in recovery mode contains_reset_prop "ro.bootmode" "recovery" "unknown" contains_reset_prop "ro.boot.bootmode" "recovery" "unknown" contains_reset_prop "vendor.boot.bootmode" "recovery" "unknown" # Security attributes check_reset_prop "ro.secure" "1" check_reset_prop "ro.debuggable" "0" check_reset_prop "ro.build.type" "user" check_reset_prop "ro.build.tags" "release-keys" # Partition verification (Hide warnings) check_reset_prop "partition.system.verified" "0" check_reset_prop "partition.vendor.verified" "0" check_reset_prop "partition.product.verified" "0" check_reset_prop "partition.system_ext.verified" "0" check_reset_prop "partition.odm.verified" "0" # OEM Unlock status check_reset_prop "ro.oem_unlock_supported" "0" # USB / ADB settings check_reset_prop "persist.sys.usb.config" "none" check_reset_prop "service.adb.root" "0" # Boot / Verification status check_reset_prop "ro.boot.selinux" "enforcing" check_reset_prop "ro.boot.verifiedbootstate" "green" check_reset_prop "ro.boot.flash.locked" "1" check_reset_prop "ro.boot.avb_version" "1.3" check_reset_prop "ro.boot.vbmeta.device_state" "locked" check_reset_prop "ro.crypto.state" "encrypted" ================================================ FILE: Module/uninstall.sh ================================================ #!/system/bin/sh TRICKY_DIR="/data/adb/tricky_store" TARGET_FILE="$TRICKY_DIR/keybox.xml" BACKUP_FILE="$TRICKY_DIR/keybox.xml.bak" BBIN="/data/adb/Yurikey/bin" ui_print() { echo "$1" } backup () { if [ -f "$BACKUP_FILE" ]; then rm -f "$TARGET_FILE" mv "$BACKUP_FILE" "$TARGET_FILE" fi } if [ -f "$TARGET_FILE" ]; then if grep -q "yuriiroot" "$TARGET_FILE"; then backup fi fi if [ -d "$BBIN" ]; then rm -rf $BBIN fi ================================================ FILE: Module/webroot/common/FixWidevineL1/FixWidevineL1.sh ================================================ LD_LIBRARY_PATH=/vendor/lib64/hw /vendor/bin/KmInstallKeybox /data/local/tmp/attestation attestation true ================================================ FILE: Module/webroot/common/FixWidevineL1/attestation ================================================ 1 -----BEGIN EC PRIVATE KEY----- MHcCAQEEIITtDeCxHmadsR64nZgJmqW/tuWN2vjvpKHQc+ZK16vCoAoGCCqGSM49 AwEHoUQDQgAEze1OfhlNmrrghv23VH1080nuiOHTkE6U6UafCefyO9AeJb3ZjzTr jJ5sVXRQ8zoP0kea8mB2Cg2/acuzQIcJeg== -----END EC PRIVATE KEY----- 3 -----BEGIN CERTIFICATE----- MIIB8jCCAXmgAwIBAgIQFOOLOXnt7wbQ6VtxMaCLIjAKBggqhkjOPQQDAjA5MQww CgYDVQQMDANURUUxKTAnBgNVBAUTIGUwYzM1NDhhNDdlNzNmMmE3NWZiOWVkNmRh NWJmM2U4MB4XDTIwMDkyODIwMTgzOFoXDTMwMDkyNjIwMTgzOFowOTEMMAoGA1UE DAwDVEVFMSkwJwYDVQQFEyAxOTllNWRjYWY1NjZhMGUzZWY5MDY2ZjMwNWU3NTZj YTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM3tTn4ZTZq64Ib9t1R9dPNJ7ojh 05BOlOlGnwnn8jvQHiW92Y8064yebFV0UPM6D9JHmvJgdgoNv2nLs0CHCXqjYzBh MB0GA1UdDgQWBBRNOkkWmT0V3Uyj7ZjdQov5G6K66TAfBgNVHSMEGDAWgBTCUwGu PmMBr/KlnNVfgJSOADJOPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIC BDAKBggqhkjOPQQDAgNnADBkAjAJKrzd5ePYC4kDP4xLvI8xuaBy1F3g4aeKWQNx yFCFZMvuCwZ0vu58TDtoeGBsKVACMF7ixBjTVML8pHXcAh6cjk+60Syk0QsbnKxo eDO28ev+S2qAjI1yvJD1UzqjyoIOCg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDkzCCAXugAwIBAgIQFk/xbbOK0z0ZBF99wwx/zDANBgkqhkiG9w0BAQsFADAb MRkwFwYDVQQFExBmOTIwMDllODUzYjZiMDQ1MB4XDTIwMDkyODIwMTc0OVoXDTMw MDkyNjIwMTc0OVowOTEMMAoGA1UEDAwDVEVFMSkwJwYDVQQFEyBlMGMzNTQ4YTQ3 ZTczZjJhNzVmYjllZDZkYTViZjNlODB2MBAGByqGSM49AgEGBSuBBAAiA2IABJHz 0uU3kbaMjfVN38GXDgIBLl4Gp7P59n6+zmqoswoBrbrsCiFOWUU+B918FnEVcW86 joLS+Ysn7msakvrHanJMJ4vDwD7/p+F6nkQ9J95FEkuq71oGTzCrs6SlCHu5XqNj MGEwHQYDVR0OBBYEFMJTAa4+YwGv8qWc1V+AlI4AMk48MB8GA1UdIwQYMBaAFDZh 4QB8iAUJUYtEbEf/GkzJ6k8SMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD AgIEMA0GCSqGSIb3DQEBCwUAA4ICAQAnO5KNrbenSYxIOfzxH47CNi3Qz2O5+FoP W7svNjggg/hZotSwbddpSVa+fdQYYYZdHMPNjQKXYaDxPPC2i/8KBhscq+TW1k9Y KP+qNGMZ2CKzRIT0pByL0M5LQNbH6VxAvzGlaCvTOIsDmlLyjzmT9QMtjWkmLKdu ISOa72hGMM4kCcIRKcgsq/s00whsOJ6IT27lp85AATuL9NvNE+kC1TZ96zEsR8Op lur4euBmFoGzmtSFsZa9TNyc68RuJ+n/bY7iI77wXUz7ER6uj/sfnrjYJFclLjIj m8Mqp69IZ1nbJsKTgg0e5X4xeecNPLSMp/hGqDOvNnSVbpri6Djm0ZWILk65BeRx ANDUhICg/iuXnbSLIgPAIxsmniTV41nnIQ2nwDxVtfStsPzSWeEKkMTeta+Lu8jK KVDcRTt2zoGx+JOQWaEWpOTUM/xZwnJamdHsKBWsskQhFMxLIPJbMeYAeCCswDTE +LQv31wDTxSrFVw/fcfVY6PSRZWoy+6Q/zF3JATwQnYxNUchZG4suuy/ONPbOhD0 VdzjkSyza6fomTw2F1G3c4jSQIiNV3OIxsxh4ja1ssJqMPuQzRcGGXxX8yQHrg+t +Dxn32jFVhl5bxTeKuI6mWBYM+/qEBTBEXLNSmVdxrntFaPmiQcguBSFR1oHZyi/ xS/jbYFZEQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFHDCCAwSgAwIBAgIJANUP8luj8tazMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNV BAUTEGY5MjAwOWU4NTNiNmIwNDUwHhcNMTkxMTIyMjAzNzU4WhcNMzQxMTE4MjAz NzU4WjAbMRkwFwYDVQQFExBmOTIwMDllODUzYjZiMDQ1MIICIjANBgkqhkiG9w0B AQEFAAOCAg8AMIICCgKCAgEAr7bHgiuxpwHsK7Qui8xUFmOr75gvMsd/dTEDDJdS Sxtf6An7xyqpRR90PL2abxM1dEqlXnf2tqw1Ne4Xwl5jlRfdnJLmN0pTy/4lj4/7 tv0Sk3iiKkypnEUtR6WfMgH0QZfKHM1+di+y9TFRtv6y//0rb+T+W8a9nsNL/ggj nar86461qO0rOs2cXjp3kOG1FEJ5MVmFmBGtnrKpa73XpXyTqRxB/M0n1n/W9nGq C4FSYa04T6N5RIZGBN2z2MT5IKGbFlbC8UrW0DxW7AYImQQcHtGl/m00QLVWutHQ oVJYnFPlXTcHYvASLu+RhhsbDmxMgJJ0mcDpvsC4PjvB+TxywElgS70vE0XmLD+O JtvsBslHZvPBKCOdT0MS+tgSOIfga+z1Z1g7+DVagf7quvmag8jfPioyKvxnK/Eg sTUVi2ghzq8wm27ud/mIM7AY2qEORR8Go3TVB4HzWQgpZrt3i5MIlCaY504LzSRi igHCzAPlHws+W0rB5N+er5/2pJKnfBSDiCiFAVtCLOZ7gLiMm0jhO2B6tUXHI/+M RPjy02i59lINMRRev56GKtcd9qO/0kUJWdZTdA2XoS82ixPvZtXQpUpuL12ab+9E aDK8Z4RHJYYfCT3Q5vNAXaiWQ+8PTWm2QgBR/bkwSWc+NpUFgNPN9PvQi8WEg5Um AGMCAwEAAaNjMGEwHQYDVR0OBBYEFDZh4QB8iAUJUYtEbEf/GkzJ6k8SMB8GA1Ud IwQYMBaAFDZh4QB8iAUJUYtEbEf/GkzJ6k8SMA8GA1UdEwEB/wQFMAMBAf8wDgYD VR0PAQH/BAQDAgIEMA0GCSqGSIb3DQEBCwUAA4ICAQBOMaBc8oumXb2voc7XCWnu XKhBBK3e2KMGz39t7lA3XXRe2ZLLAkLM5y3J7tURkf5a1SutfdOyXAmeE6SRo83U h6WszodmMkxK5GM4JGrnt4pBisu5igXEydaW7qq2CdC6DOGjG+mEkN8/TA6p3cno L/sPyz6evdjLlSeJ8rFBH6xWyIZCbrcpYEJzXaUOEaxxXxgYz5/cTiVKN2M1G2ok QBUIYSY6bjEL4aUN5cfo7ogP3UvliEo3Eo0YgwuzR2v0KR6C1cZqZJSTnghIC/vA D32KdNQ+c3N+vl2OTsUVMC1GiWkngNx1OO1+kXW+YTnnTUOtOIswUP/Vqd5SYgAI mMAfY8U9/iIgkQj6T2W6FsScy94IN9fFhE1UtzmLoBIuUFsVXJMTz+Jucth+IqoW Fua9v1R93/k98p41pjtFX+H8DslVgfP097vju4KDlqN64xV1grw3ZLl4CiOe/A91 oeLm2UHOq6wn3esB4r2EIQKb6jTVGu5sYCcdWpXr0AUVqcABPdgL+H7qJguBw09o jm6xNIrw2OocrDKsudk/okr/AwqEyPKw9WnMlQgLIKw1rODG2NvU9oR3GVGdMkUB ZutL8VuFkERQGt6vQ2OCw0sV47VMkuYbacK/xyZFiRcrPJPb41zgbQj9XAEyLKCH ex0SdDrx+tWUDqG8At2JHA== -----END CERTIFICATE----- -----BEGIN RSA PRIVATE KEY----- MIIG5AIBAAKCAYEApPn7neF2UhbrkP/3IPA3H/zvQa7rXolMXecK0jKqb6dnRqgQ u0cZajVvaSrYABTFDVfuCX5IEMiM4gYsOT7HDVY0h/SIL0OrdvXR+SHmLRc8D/rK T9eQIIUtgf776aI/zc2EqPXRO3P8UahDDKfxWClUUOSfcv56zyKaWBaTsOgLGIE8 SiC5seRRd1Bo7qh3UVyP3qVA8pX4AQAA9odg+kXtBA52LeLy5RHcaJJzMqKSPNF2 MFuJSCD3qU7BB5oBMmnYV3RUFa/+QcI/6tg7LVS/P/Elyqnmb2WnuCPhPEtaW7Ip SR8Vdmku7YFE7zXiCrFolxFd0pgNjfuGFdoqUbjyWfrzt0SABgKTYRQygX7mquiZ uKzE0d02gkB9ucG123aupjN07XQC5DqwDG+rBdqNQ6yNL49LACnxMSxwCGoh6dpc 9jgXzT1SMH9v0Wp+krIWd94/WG+HosFFpCXKEj0yAQvCVzkBfx3wfHS/scYY6yXK UCTGqwUPIcQ7MdnHAgMBAAECggGBAIP0//F0mXNnqdw9IKpT+YO4iJb9Fn5zS4YA e4NNy02rlMvLOjbR095EB20TO9o0wri9kEQ/odzqzOUtEspnEEf2n+XvDc7gTZHF ZcHj/3wpjX0qmA/s1/drDs9f6Jcjk+1FacrLdCQdzcBy2c6RtlVSGYLqmy8bpZdw kgvLYy6pK9bZ6CNSsbU8bn0E8CmUznthkiIABEcE9W23Vw3ZkxQcQkxwVM63LJlV A/sQyNvDdTz4PZTIYrIyzGW7/GHcJ7glMJQnvPVIl4XZqhpxk/iK8KC6FqclnHG5 BA2EaDrXiHa+THqGavkPpLzIBIS3odxFEDiRbrekDVT7nVQ21OhSIg4Mp++CT/RL uiavlXJC0qobL23GRm9IUmkq88pGt1K06V3csaKfgOnJn4EMV5HorARnq1Zhtw/P 4Pzse+BQkTRfANVQ4ueocQus+MtutsJESvh4MF+ghgf0xeLWQs7rHNEIbRZhVxyX kAQngkmoBw2U/Gziz7gkcXgRlh6HgQKBwQDQTCALdpIS8uWZfV8UQK5WzqKIyX3+ /NhFExsHI3GBjRSMVPbtphSPuD54jTZKboLuOGfHJAWleduYr0XUiUkMku37Y7Xj anGUzSZvB3qasKxHfWxZKH+1OBWFlj7bkwgsLAh4+50Md44d7MfceD0mWBOyVlRt 5L8vIzLPxltbRcidISlnk/Moqk38QVGtQ7vo3NOR6PJwPY/V/g1/QDC2LORBNmt9 6Eqs3LdNf+3rSCaaYhD1XbaYQ7j095eFIBcCgcEAysIUdEUXrySRGGQ2PiBlszD0 l9jqL/wJEe+tOTu3F7+Qu7zmcS5Q0cbFJY+ztPPgzSrw2DOiFvPH63KlA9wJ2POR O2pXar668FxJjoNF1Jkb8vMISrk/IHDYn7GL+/XTPiB+RglVgjz2ID+Z9UQZZRDp R8p0Eqa12OxoP7HK7fmUkBjWKTqi1VDtfB6vM+EM7cxd+CsiKpazDjWGwMMc0jz7 ABiMFhhKiC+yq4fECXHt6ZA9oh8VGUdp7AIJO/HRAoHBAJqJP+UBTRJ93tXna9js u+tvVqrBQpchI5rrt8uuAhIphysuBhz+cJbIDKEHs1W5c64lbukR0paYN9Gph9dN G0MW5zTxHwrf9/B7253YIKAPn2FSrkXfhBAA0gbQF0Z0aUXMTWTk1/ld4bRV7Vmm Y0fFZKeU4QK/CRCBvrrj4PdwaIwbBEryOx7aaw1RsLUpYYo7+0NvXh7jrYkH+R+F kh42ZAn1w/4fjvd8sQnwdaVvXCSByS8hHc0NwXUNE/8SdQKBwHfg3+8Omr42xILD XT7GMNsNatAMtAnC3in4p1ZbdBlabdxSB32LgMVG3HEk0X9/Yb5sURHDFWa0o9MV aXMqubfH6mpSqXS3aBeMuQDFpJfaHqg6AQENHcG0dp+UfctuwILO+1m1UxU5rdvL Pt/Ab7NNmF+V16LfZkznGYvvNqgVFD1OMfEWdgfhXUgxbC0kNlyypCyCdCTyDNOt 2gpGUdgLreuUl97IZei3KtA36TQcZCnf2lDsR7E2g+3CFmuWwQKBwDucj8UH0GKr WEEO7q/Z5Vz2e9EyRRXdgrv/yRW1qm7EKAyLPfIb2TKQZqi5Mwr8umnaOfSrqt2p 1Kklhtz5AT73hXaoOqiXmxYDQoWnlXprJekDuV3EbBS0UuhXHrtRmg4bUmZoyTNl YufICOO52cpPA/K7a0kRbNvwWHwPhZb5GFu9R030YT2yVMDtPIGr5BjwQYrHbxJW 0b13VeIupduHFWNQjkEpkFGvXQT9B8AIFVjOLbfPZKxY/WUltEOFhQ== -----END RSA PRIVATE KEY----- 3 -----BEGIN CERTIFICATE----- MIIE4DCCAsigAwIBAgIRAMInLPJfnMrFtWM6NrXgj6kwDQYJKoZIhvcNAQELBQAw OTEMMAoGA1UEDAwDVEVFMSkwJwYDVQQFEyBlMGMzNTQ4YTQ3ZTczZjJhNzVmYjll ZDZkYTViZjNlODAeFw0yMDA5MjgyMDE4MzhaFw0zMDA5MjYyMDE4MzhaMDkxDDAK BgNVBAwMA1RFRTEpMCcGA1UEBRMgMTk5ZTVkY2FmNTY2YTBlM2VmOTA2NmYzMDVl NzU2Y2EwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCk+fud4XZSFuuQ //cg8Dcf/O9BruteiUxd5wrSMqpvp2dGqBC7RxlqNW9pKtgAFMUNV+4JfkgQyIzi Biw5PscNVjSH9IgvQ6t29dH5IeYtFzwP+spP15AghS2B/vvpoj/NzYSo9dE7c/xR qEMMp/FYKVRQ5J9y/nrPIppYFpOw6AsYgTxKILmx5FF3UGjuqHdRXI/epUDylfgB AAD2h2D6Re0EDnYt4vLlEdxoknMyopI80XYwW4lIIPepTsEHmgEyadhXdFQVr/5B wj/q2DstVL8/8SXKqeZvZae4I+E8S1pbsilJHxV2aS7tgUTvNeIKsWiXEV3SmA2N +4YV2ipRuPJZ+vO3RIAGApNhFDKBfuaq6Jm4rMTR3TaCQH25wbXbdq6mM3TtdALk OrAMb6sF2o1DrI0vj0sAKfExLHAIaiHp2lz2OBfNPVIwf2/Ran6SshZ33j9Yb4ei wUWkJcoSPTIBC8JXOQF/HfB8dL+xxhjrJcpQJMarBQ8hxDsx2ccCAwEAAaNjMGEw HQYDVR0OBBYEFM19INv8epriYePOaPiYL8y349iXMB8GA1UdIwQYMBaAFJ7vzqb8 edZIDz2ZVIkiJkuCFGbMMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgIE MA0GCSqGSIb3DQEBCwUAA4ICAQADFUIGtksG19PMnfpxz1oi3+EUeMNc/2OfNIry CSqJt12pYgQxpW0R7glRrDT9JLw6Dajlt6jOSfl25PzcNUsE+twnp3Q4nTcMH1DD OGuWviQJRuGlkb1GiasqgWaQXNmQEPUwcT85Bzv3h9aH1lnMeWSiQQ7F9dpS0qHV JjO+yaHdcWHVtOtT9QGqH2P2GyuRnTimR/TJW1LaQHM8m7Ny4dAVhz86d/cYqY5s r74fPnBSghyTDEUE8zTCU3SkWv+ykAbc+h1B+VpNH4hYm1Zj7HkJAOLFm8QYX0p6 haHo32DI4H3ttjdD4VVA5DiABbUom8goQeNjEU9bOl/WYsf/nYrLKkSSu30047Pf gxl7UQcov7Xncs2/frytjKVd6L1zWNS3aIqNVMhJTPq1zADMJH1WFP1b77NVJyIB 8O3kuAlbMNILtg/eBhcD5o/8uuR0q0ikfKBWJSxWnf10BmkBkdAHeuFAC2GT+kkj HGX2o+Q36X0dOBsu2FD5TOdNd8hYCRXyL2FoY+cm1JjziEK2bVoghgGq7iTNON3s XtQbmOJ2ROpnk7rLKfsrydV9slH5UTe/25Eh9v4ORZOhwG/KA8KzlF2Jw24n+GU3 zZSjZuOjK9dFoPweg6XQkyH5zcQyZ1MpmbRTQR3O0wp6SGfdWhawY6+wP1/Yg7Ca RZUuGg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFQTCCAymgAwIBAgIQYtQ3fMcTehyJlxjFD+BUFDANBgkqhkiG9w0BAQsFADAb MRkwFwYDVQQFExBmOTIwMDllODUzYjZiMDQ1MB4XDTIwMDkyODIwMTY1MFoXDTMw MDkyNjIwMTY1MFowOTEMMAoGA1UEDAwDVEVFMSkwJwYDVQQFEyBlMGMzNTQ4YTQ3 ZTczZjJhNzVmYjllZDZkYTViZjNlODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC AgoCggIBANbbOT706t8OMUIx1hRGPcwPbaDvruVxbkx9K1QNFZzAFFu8faxHWjqe um/VPAoaWxo7/pLXJ/1zkhABhTlcB3/aTQWnzxauwXGjZoj0HiUtQj2AoX6RCJX3 HN5hh9FQblE/JoR0/DoJPo/zPWv8OrpQcl06gyBKInTJNKD/+xVwTim6GlEQT754 UF39C+KoogzbwJGgfpT6Jdj08ork11mFOmQb8dszrN8oLzpmcfo83gUmLRKvHBue TTN/aR/KtVjgsKxSdLgyyZ699A5vBzoFAsQu+lQvqckCF1Qx91wKcIkeYx03pM+4 zKquYe3OhUG5lwqaWsOhRVGpiU7iaFj6VMeInL7gBjS9LE42xnbItM1N4ZbJg5N7 qe4G4ZcQuZI8rEk9kjRgL91zgjQCIie3FU+UpvJSPpjsPjoWCv6paH9VCRcWlXo7 IP2RfTQXBohBznAh7abubK8ujNMa80i3uXN3Q2G0Jr/hIvCGMtNmzE+uPz79FEZG PjKwO9XX2XtDBXzhgBs+AoV0ODswSbkFOamharOiT+Vq2U1BviDF/O1yzO53EP4S weaLGsWznwVA7wppkmk2G2p1WjWJ6prBMYNoKLmArq+B5uZAFdLl+r9dy4gNkFyc g10akANoSQIir+gb+DkiH1kgVuoO8+icTExwxaIdIhk9KWhEz1H3AgMBAAGjYzBh MB0GA1UdDgQWBBSe786m/HnWSA89mVSJIiZLghRmzDAfBgNVHSMEGDAWgBQ2YeEA fIgFCVGLRGxH/xpMyepPEjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIC BDANBgkqhkiG9w0BAQsFAAOCAgEACmD/wwX1+pNXfct3/q7AYnznjKo5C3MUFNPd IJ9zYL74PbitMy50NU1XhVAs1uqjsUN+qgOxU9w2rz/0a1yf+2QLGGVFywbjP1Tt /hZX8Ka04iVdnr7AyObloz9KchTE431wPGXrpEw5/NXr6yvmeUSxKYe1aJBrqHc3 xROh0+WkTHBiLBnlcFr5nmxYrVPDcC9sBwaU6TQvc2JUcBwIu5WowyItgeDrq+8h 0HcpomcHcqrfuEMnO/9LZIQECIf8rTc6k7mD8hL+xOWuqMO48eC8g9xwKXKjEfRo /RZrM5uW/qP8E1JZyD81J4H0aW1hsuNvd/puUMj9EjWYZW/ud4r15fSJ9LYniJER rpnUmB43wORBf6x29akHDXyohd6QbunpEhy7HBw7IzZ6ZemZ2zAcDfcI5KiGEyAu scG3ov+WtGPq39NEc0ux5ipnO9ETkS50BDByFrGeZsGdpGBwK4xYLhmFPVzEaFDk FOpBEzxfdkMBQX/5PMqYiWkLS8EoyCsdmnua07zs3qQtkXC7sQjwaK9h/FwkEdt/ CdtLvbZUpzd1I/qHJzIuAWhwPBLsCSvSaq+cSEvBPkhVmLJJY+dlkv6zPEo10hv5 y11KV3n/6sIxYNL4TGF1enD64ysmsEy1A6g4UkmMpaHePbLiyb6Ri26TKY7G+wuP fmjXsWI= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFHDCCAwSgAwIBAgIJANUP8luj8tazMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNV BAUTEGY5MjAwOWU4NTNiNmIwNDUwHhcNMTkxMTIyMjAzNzU4WhcNMzQxMTE4MjAz NzU4WjAbMRkwFwYDVQQFExBmOTIwMDllODUzYjZiMDQ1MIICIjANBgkqhkiG9w0B AQEFAAOCAg8AMIICCgKCAgEAr7bHgiuxpwHsK7Qui8xUFmOr75gvMsd/dTEDDJdS Sxtf6An7xyqpRR90PL2abxM1dEqlXnf2tqw1Ne4Xwl5jlRfdnJLmN0pTy/4lj4/7 tv0Sk3iiKkypnEUtR6WfMgH0QZfKHM1+di+y9TFRtv6y//0rb+T+W8a9nsNL/ggj nar86461qO0rOs2cXjp3kOG1FEJ5MVmFmBGtnrKpa73XpXyTqRxB/M0n1n/W9nGq C4FSYa04T6N5RIZGBN2z2MT5IKGbFlbC8UrW0DxW7AYImQQcHtGl/m00QLVWutHQ oVJYnFPlXTcHYvASLu+RhhsbDmxMgJJ0mcDpvsC4PjvB+TxywElgS70vE0XmLD+O JtvsBslHZvPBKCOdT0MS+tgSOIfga+z1Z1g7+DVagf7quvmag8jfPioyKvxnK/Eg sTUVi2ghzq8wm27ud/mIM7AY2qEORR8Go3TVB4HzWQgpZrt3i5MIlCaY504LzSRi igHCzAPlHws+W0rB5N+er5/2pJKnfBSDiCiFAVtCLOZ7gLiMm0jhO2B6tUXHI/+M RPjy02i59lINMRRev56GKtcd9qO/0kUJWdZTdA2XoS82ixPvZtXQpUpuL12ab+9E aDK8Z4RHJYYfCT3Q5vNAXaiWQ+8PTWm2QgBR/bkwSWc+NpUFgNPN9PvQi8WEg5Um AGMCAwEAAaNjMGEwHQYDVR0OBBYEFDZh4QB8iAUJUYtEbEf/GkzJ6k8SMB8GA1Ud IwQYMBaAFDZh4QB8iAUJUYtEbEf/GkzJ6k8SMA8GA1UdEwEB/wQFMAMBAf8wDgYD VR0PAQH/BAQDAgIEMA0GCSqGSIb3DQEBCwUAA4ICAQBOMaBc8oumXb2voc7XCWnu XKhBBK3e2KMGz39t7lA3XXRe2ZLLAkLM5y3J7tURkf5a1SutfdOyXAmeE6SRo83U h6WszodmMkxK5GM4JGrnt4pBisu5igXEydaW7qq2CdC6DOGjG+mEkN8/TA6p3cno L/sPyz6evdjLlSeJ8rFBH6xWyIZCbrcpYEJzXaUOEaxxXxgYz5/cTiVKN2M1G2ok QBUIYSY6bjEL4aUN5cfo7ogP3UvliEo3Eo0YgwuzR2v0KR6C1cZqZJSTnghIC/vA D32KdNQ+c3N+vl2OTsUVMC1GiWkngNx1OO1+kXW+YTnnTUOtOIswUP/Vqd5SYgAI mMAfY8U9/iIgkQj6T2W6FsScy94IN9fFhE1UtzmLoBIuUFsVXJMTz+Jucth+IqoW Fua9v1R93/k98p41pjtFX+H8DslVgfP097vju4KDlqN64xV1grw3ZLl4CiOe/A91 oeLm2UHOq6wn3esB4r2EIQKb6jTVGu5sYCcdWpXr0AUVqcABPdgL+H7qJguBw09o jm6xNIrw2OocrDKsudk/okr/AwqEyPKw9WnMlQgLIKw1rODG2NvU9oR3GVGdMkUB ZutL8VuFkERQGt6vQ2OCw0sV47VMkuYbacK/xyZFiRcrPJPb41zgbQj9XAEyLKCH ex0SdDrx+tWUDqG8At2JHA== -----END CERTIFICATE----- ================================================ FILE: Module/webroot/common/boot_hash.sh ================================================ #!/system/bin/sh log_message() { echo "$(date +%Y-%m-%d\ %H:%M:%S) [SET_BOOT_HASH] $1" } log_message "Start" # Get vbmeta hash boot_hash=$(su -c "getprop ro.boot.vbmeta.digest" 2>/dev/null) [ -z "$boot_hash" ] && boot_hash="0000000000000000000000000000000000000000000000000000000000000000" file_path="/data/adb/boot_hash" # Create folder and write file log_message "Writing" mkdir -p "$(dirname "$file_path")" echo "$boot_hash" > "$file_path" chmod 644 "$file_path" su -c "resetprop -n ro.boot.vbmeta.digest $boot_hash" >/dev/null 2>&1 log_message "Finish" ================================================ FILE: Module/webroot/common/device-info.sh ================================================ #!/system/bin/sh # Specify the current root directory for both normal and update path if [ -d "/data/adb/modules_update/Yurikey" ]; then BASE_PATH="/data/adb/modules_update/Yurikey" else BASE_PATH="/data/adb/modules/Yurikey" fi INFO_PATH="$BASE_PATH/webroot/json/device-info.json" android_ver=$(getprop ro.build.version.release) kernel_ver=$(uname -r) # Root Implementation if [ -d "/data/adb/magisk" ] && [ -f "/data/adb/magisk.db" ]; then root_type="Magisk" elif [ -f "/data/apatch/apatch" ]; then root_type="Apatch" elif [ -d "/data/adb/ksu" ] && { [ -d "/data/adb/kpm" ] || [ -f "/data/adb/ksu/.dynamic_sign" ]; }; then root_type="SukiSU-Ultra" elif [ -d "/data/adb/ksu" ] && { [ -f "/data/adb/ksud" ] || [ -f "/sys/module/kernelsu/parameters/expected_manager_size" ]; }; then root_type="KernelSU-Next" elif [ -d "/data/adb/ksu" ]; then root_type="KernelSU" else root_type="Unknown" fi # Output JSON cat < "$INFO_PATH" { "android": "$android_ver", "kernel": "$kernel_ver", "root": "$root_type" } EOF ================================================ FILE: Module/webroot/common/lsposed2.sh ================================================ #!/system/bin/sh find /data/app -type f -name base.odex -delete ================================================ FILE: Module/webroot/common/pif2.sh ================================================ #!/system/bin/sh su -c ' getprop | grep -E "pihook|pixelprops" | sed -E "s/^\[(.*)\]:.*/\1/" | while IFS= read -r prop; do resetprop -p -d "$prop" done ' ================================================ FILE: Module/webroot/common/twrp.sh ================================================ #!/system/bin/sh # delete_twrp_folder.sh # Script to delete TWRP folder from Android internal storage echo "Starting deletion of TWRP folder..." # Define the TWRP folder path (adjust if needed) TWRP_FOLDER="/sdcard/TWRP" if [ -d "$TWRP_FOLDER" ]; then echo "- Found folder $TWRP_FOLDER. Deleting..." rm -rf "$TWRP_FOLDER" echo "Folder deleted successfully." else echo "- Folder $TWRP_FOLDER not found. Nothing to delete." fi echo "TWRP folder deletion script completed." ================================================ FILE: Module/webroot/common/widevinel1.sh ================================================ #!/system/bin/sh # Copy FixWidevineL1/* directory to /data/local/tmp cp -r ./FixWidevineL1/* /data/local/tmp/ # Set correct permissions chmod 777 /data/local/tmp/FixWidevineL1.sh chmod 777 /data/local/tmp/attestation # Set owner and group to root:root chown root:root /data/local/tmp/FixWidevineL1.sh chown root:root /data/local/tmp/attestation # Execute the script su -c sh /data/local/tmp/FixWidevineL1.sh ================================================ FILE: Module/webroot/config.json ================================================ { "title": "Yurikey Manager", "icon": "yurikey.png", "windowResize": false, "exitConfirm": false } ================================================ FILE: Module/webroot/css/style.css ================================================ :root { color-scheme: dark; --ui-bg: #111a26; --ui-text: #f3edf7; --ui-card-bg: #1d2a3a; --ui-card-border: #334759; --ui-muted: #c2d0e3; --ui-pill-bg: #9ecaff; --ui-pill-bg-hover: #b0d4ff; --ui-pill-border: #c7ddff; --ui-pill-text: #003258; --ui-nav-active: #00497d; --ui-nav-text: #d1e4ff; --ui-nav-text-active: #ffffff; --ui-select-bg: #3a546f; --ui-select-border: #6f90b2; --ui-select-panel: #273a4e; --ui-select-panel-border: #587493; --snackbar-info: #2196f3; --snackbar-success: #43a047; --snackbar-warning: #f9a825; --snackbar-error: #e53935; --snackbar-text: #ffffff; } :root[data-theme-mode="light"] { color-scheme: light; --ui-bg: #e9f2ff; --ui-text: #2f2433; --ui-card-bg: #f2f7ff; --ui-card-border: #c6d8ef; --ui-muted: #44607d; --ui-pill-bg: #0061a4; --ui-pill-bg-hover: #1a74b7; --ui-pill-border: #6aa6d3; --ui-pill-text: #ffffff; --ui-nav-active: #0061a4; --ui-nav-text: #001d36; --ui-nav-text-active: #ffffff; --ui-select-bg: #d1e4ff; --ui-select-border: #b2cbe9; --ui-select-panel: #e2eeff; --ui-select-panel-border: #c3d8f3; } body { margin: 0; background: var(--ui-bg); color: var(--ui-text); } .page-shell { max-width: 1080px; margin: 0 auto; padding: 1rem 0.75rem 6rem; } .page { display: none; } .page.active { display: block; } .page-card { padding: 1rem; border-radius: 1rem; } .block { margin-top: 1rem; padding: 1rem; border-radius: 0.9rem; } .stack { display: flex; flex-direction: column; gap: 0.65rem; } .menu-btn { width: 100%; justify-content: center; } .page-title { font-size: 1.5rem; line-height: 1.2; } #home-page #refresh-info-btn, #actions-page .menu-btn, #advance-menu .menu-btn, #settings-page .update-support .menu-btn { border-radius: 999px; min-height: 46px; padding: 0.65rem 1rem; border: 1px solid var(--ui-pill-border); background: var(--ui-pill-bg); color: var(--ui-pill-text); font-weight: 700; letter-spacing: 0.01em; box-shadow: none; } #home-page #refresh-info-btn { width: auto; min-width: 180px; align-self: flex-start; } .mini-card { padding: 0.5rem 0.8rem; border-radius: 0.9rem; background: var(--ui-card-bg); border: 1px solid var(--ui-card-border); width: 100%; max-width: 100%; box-sizing: border-box; } .mini-card-value { margin: 0.35rem 0 0; font-size: 1rem; font-weight: 700; color: var(--ui-text); } .module-version-label { font-size: 0.98rem; } .module-version-value { font-size: 1.08rem; } .home-top-controls { display: flex; flex-direction: column; align-items: stretch; gap: 0.7rem; margin-bottom: 0.5rem; } #home-page #refresh-info-btn:hover, #actions-page .menu-btn:hover, #advance-menu .menu-btn:hover, #settings-page .update-support .menu-btn:hover { background: var(--ui-pill-bg-hover); } #home-page #refresh-info-btn:disabled, #home-page #refresh-info-btn.rotating { opacity: 1 !important; background: var(--ui-pill-bg) !important; background-image: none !important; color: var(--ui-pill-text) !important; border-color: var(--ui-pill-border) !important; box-shadow: none !important; filter: none !important; } #home-page #refresh-info-btn.rotating:hover, #home-page #refresh-info-btn.rotating:active { background: var(--ui-pill-bg) !important; background-image: none !important; } #home-page #refresh-info-btn.rotating::before, #home-page #refresh-info-btn.rotating::after { color: var(--ui-pill-text) !important; border-color: var(--ui-pill-text) !important; } #home-page #refresh-info-btn:active, #actions-page .menu-btn:active, #advance-menu .menu-btn:active, #settings-page .update-support .menu-btn:active:active { transform: translateY(1px); } .home-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Küçük kartlar için daha dar kolonlar */ gap: 0.75rem; } .beer-card { padding: 0.8rem 1rem; border-radius: 1.25rem; background: var(--ui-card-bg); border: 1px solid var(--ui-card-border); box-shadow: 0 4px 16px rgb(0 0 0 / 20%); min-height: 100px; display: flex; flex-direction: column; justify-content: center; } .card-title { color: var(--ui-muted); font-size: 1rem; } .section-heading { font-size: 1.14rem; line-height: 1.35; } .long-heading { font-size: 1.08rem; } .card-value { margin: 0.65rem 0 0; font-weight: 700; font-size: 1.02rem; color: var(--ui-text); } #status-row.online { border: 1px solid color-mix(in srgb, var(--tertiary) 50%, transparent); } #status-row.offline { border: 1px solid color-mix(in srgb, var(--error) 50%, transparent); } .bottom-nav { position: fixed; left: 0.5rem; right: 0.5rem; bottom: 0.5rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.35rem; padding: 0.35rem; border-radius: 999px; border: 1px solid var(--outline-variant); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgb(0 0 0 / 35%); } .nav-btn { border: none; background: transparent; min-height: 44px; padding: 0.55rem 0.35rem; border-radius: 999px; color: var(--ui-nav-text); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; opacity: 0.72; transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease; } .nav-icon { font-size: 18px !important; line-height: 1; opacity: 0.72; } .nav-btn.active { background: var(--ui-nav-active); color: var(--ui-nav-text-active); box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%), 0 8px 24px rgb(127 39 80 / 35%); opacity: 1; } .nav-btn.active .nav-icon { opacity: 1; transform: scale(1.03); } .nav-btn span { font-size: 0.85rem; white-space: nowrap; } .custom-dropdown { position: relative; } .lang-select-wrap { margin-top: 0.4rem; } #settings-page .lang-select-btn { width: 100%; min-height: 54px; border-radius: 999px; border: 1px solid var(--ui-select-border); background: var(--ui-select-bg); color: var(--ui-text); font-weight: 600; justify-content: space-between; padding: 0.8rem 1rem 0.8rem 1.2rem; box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%); } #settings-page .lang-select-btn::after { content: ""; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--ui-text); margin-left: 0.5rem; } .lang-options-list { margin-top: 0.45rem; border-radius: 1rem; background: var(--ui-select-panel); border: 1px solid var(--ui-select-panel-border); box-shadow: 0 10px 28px rgb(0 0 0 / 45%); } .dropdown-list { display: none; position: absolute; z-index: 20; left: 0; right: 0; margin-top: 0.25rem; max-height: 240px; overflow-y: auto; border-radius: 0.75rem; background: var(--surface-container-high); border: 1px solid var(--outline-variant); padding: 0.25rem 0; } .dropdown-list.show { display: block; } .dropdown-list li { list-style: none; cursor: pointer; padding: 0.6rem 0.75rem; } .dropdown-list li:hover { background: var(--surface-container-highest); } .lang-select-wrap .lang-options-list { background: var(--ui-select-panel); border: 1px solid var(--ui-select-panel-border); box-shadow: 0 10px 28px rgb(0 0 0 / 45%); } .lang-select-wrap .lang-options-list li:hover { background: color-mix(in srgb, var(--ui-select-panel) 86%, #ffffff 14%); } .theme-presets { margin-top: 0.75rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.5rem; } .theme-preset-btn { border: 1px solid var(--ui-pill-border); background: color-mix(in srgb, var(--ui-card-bg) 78%, var(--ui-pill-bg) 22%); color: var(--ui-text); border-radius: 999px; padding: 0.55rem 0.7rem; font-weight: 600; } .theme-preset-btn.active { background: var(--ui-pill-bg); color: var(--ui-pill-text); border-color: var(--ui-pill-border); } #settings-page .surface-variant.block, #actions-page .surface-variant.block.menu-card, #advance-menu .surface-variant.block.menu-card { background: var(--ui-card-bg); border: 1px solid var(--ui-card-border); color: var(--ui-text); box-shadow: 0 4px 12px rgb(0 0 0 / 20%); padding: 0.8rem 1rem; border-radius: 1rem; min-height: 100px; display: flex; flex-direction: column; justify-content: center; } #actions-page .surface-variant.block.menu-card h6, #advance-menu .surface-variant.block.menu-card h6, #settings-page .surface-variant.block h6 { color: var(--ui-text); font-size: 1rem; font-weight: 600; } @media (max-width: 768px) { #settings-page .surface-variant.block, #actions-page .surface-variant.block.menu-card, #advance-menu .surface-variant.block.menu-card { padding: 0.6rem 0.8rem; min-height: 90px; border-radius: 0.9rem; } #actions-page .surface-variant.block.menu-card h6, #advance-menu .surface-variant.block.menu-card h6, #settings-page .surface-variant.block h6 { font-size: 0.9rem; } } .appearance-header { display: flex; align-items: center; justify-content: flex-start; gap: 0.75rem; } .appearance-title { font-size: 1.08rem; line-height: 1.2; } .contrib-grid { margin-top: 0.75rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; } .contrib-card { border: 1px solid var(--outline-variant); border-radius: 0.8rem; background: color-mix(in srgb, var(--ui-card-bg) 88%, #ffffff 12%); color: var(--on-surface); padding: 0.8rem; text-align: center; min-height: 138px; box-shadow: 0 6px 16px rgb(0 0 0 / 18%); } .contrib-card:hover { transform: translateY(-2px); border-color: var(--ui-pill-border); } .contrib-card img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; } .contrib-name { margin-top: 0.45rem; font-weight: 700; } .contrib-role { font-size: 0.85rem; color: var(--on-surface-variant); } .small-text { font-size: 0.95rem; line-height: 1.5; } #settings-page h6[data-i18n="settings_language"], #settings-page h6[data-i18n="update_title"], #settings-page h6[data-i18n="settings_contributors"] { font-size: 1.08rem; } #settings-page .surface-variant.block > h6:not(.section-heading) { font-size: 1.08rem; } #settings-page p[data-i18n="update_desc"] { font-size: 1rem; line-height: 1.55; } #settings-page p[data-i18n="update_note"] { font-size: 1rem; line-height: 1.6; } .snackbar { position: fixed; left: 50%; top: 1rem; transform: translateX(-50%) translateY(-20px); min-width: min(88vw, 560px); max-width: min(88vw, 560px); padding: 0.85rem 1rem; border-radius: 0.8rem; color: var(--snackbar-text); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 40; box-shadow: 0 10px 26px rgb(0 0 0 / 32%); } .snackbar.show { opacity: 1; transform: translateX(-50%) translateY(0); } .snackbar.has-output { pointer-events: auto; cursor: pointer; } .snackbar.info { background: var(--snackbar-info); } .snackbar.success { background: var(--snackbar-success); } .snackbar.warning { background: var(--snackbar-warning); } .snackbar.error { background: var(--snackbar-error); } .overlay.blur { position: fixed; inset: 0; background: rgb(0 0 0 / 35%); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 60; } .overlay.blur.active { opacity: 1; pointer-events: auto; } .snackbar-dialog { z-index: 61; width: min(92vw, 640px); border: 1px solid var(--ui-card-border); border-radius: 1rem; background: var(--ui-card-bg); color: var(--ui-text); } .snackbar-output-pre { max-height: 48vh; overflow: auto; white-space: pre-wrap; background: color-mix(in srgb, var(--ui-card-bg) 78%, #000 22%); border-radius: 0.7rem; padding: 0.85rem; } .snackbar-output-meta { margin: 0.6rem 0 0; opacity: 0.85; } .history-dialog-actions { margin-top: 1rem; gap: 0.5rem; } .history-dialog-actions .history-btn { border-radius: 999px; min-width: 110px; padding: 0.6rem 1rem; border: 1px solid var(--ui-pill-border); background: var(--ui-pill-bg); color: var(--ui-pill-text); font-weight: 700; box-shadow: none; } .history-dialog-actions .history-btn:hover { background: var(--ui-pill-bg-hover); } @media (max-width: 768px) { .beer-card { min-height: 90px; /* Mobilde daha kısa */ padding: 0.7rem 0.8rem; /* Daha küçük iç boşluk */ } .mini-card { padding: 0.4rem 0.6rem; /* Küçük kartlar daha da küçülsün */ } .home-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Kolonlar daha dar */ } } ================================================ FILE: Module/webroot/index.html ================================================ Yurikey Manager

Yurikey Manager

Version

Error

Clock Date

--/--/--

Clock Time

--:--:--

Status

Offline

Android

Error

Kernel

Error

Root Implementation

Error

Main Menu
Advanced Menu
Settings
Language
Appearance
Clock Format
Update & Support

Stay up-to-date with the latest version of YuriKey, bug fixes, and new features.

Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.

Project Contributors
Script Outputs
================================================ FILE: Module/webroot/js/components/clock.js ================================================ // Clock Component const CLOCK_FORMAT_KEY = "clockFormat"; function getClockFormat() { return localStorage.getItem(CLOCK_FORMAT_KEY) || "auto"; } function getClockFormatLabel(format) { if (format === "24h") return "24-hour (00:00)"; if (format === "12h") return "12-hour (AM/PM)"; return "Auto (Device)"; } function setupClockFormatDropdown() { const clockFormatBtn = document.getElementById("clock-format-btn"); const clockFormatOptions = document.getElementById("clock-format-options"); if (!clockFormatBtn || !clockFormatOptions) return; const currentFormat = getClockFormat(); clockFormatBtn.innerText = getClockFormatLabel(currentFormat); clockFormatBtn.addEventListener("click", (e) => { e.stopPropagation(); clockFormatOptions.classList.toggle("show"); }); document.addEventListener("click", (e) => { if (!clockFormatOptions.contains(e.target) && e.target !== clockFormatBtn) { clockFormatOptions.classList.remove("show"); } }); clockFormatOptions.querySelectorAll("li[data-format]").forEach(item => { item.addEventListener("click", () => { const format = item.dataset.format || "auto"; localStorage.setItem(CLOCK_FORMAT_KEY, format); clockFormatBtn.innerText = getClockFormatLabel(format); clockFormatOptions.classList.remove("show"); updateClock(); showToast(`Clock format: ${getClockFormatLabel(format)}`, "success"); }); }); } function updateClock() { const now = new Date(); const format = getClockFormat(); const formattedDate = new Intl.DateTimeFormat(undefined, { day: "2-digit", month: "2-digit", year: "numeric", }).format(now); let formattedTime; if (format === "24h") { formattedTime = new Intl.DateTimeFormat(undefined, { hour: "2-digit", minute: "2-digit", second: "2-digit", hour12: false, }).format(now); } else if (format === "12h") { formattedTime = new Intl.DateTimeFormat(undefined, { hour: "2-digit", minute: "2-digit", second: "2-digit", hour12: true, }).format(now); } else { formattedTime = now.toLocaleTimeString(undefined, { hour: "2-digit", minute: "2-digit", second: "2-digit", }); } const clockDateEl = document.getElementById("clock-date"); const clockTimeEl = document.getElementById("clock-time"); if (clockDateEl) clockDateEl.textContent = formattedDate; if (clockTimeEl) clockTimeEl.textContent = formattedTime; } // Initialize clock document.addEventListener("DOMContentLoaded", () => { setupClockFormatDropdown(); updateClock(); setInterval(updateClock, 1000); }); // Export functions window.updateClock = updateClock; ================================================ FILE: Module/webroot/js/components/navigation.js ================================================ // Navigation Component document.addEventListener("DOMContentLoaded", () => { // Navigation buttons document.querySelectorAll(".nav-btn").forEach((btn, idx) => { btn.addEventListener("click", () => { document.querySelectorAll(".nav-btn").forEach(b => b.classList.remove("active")); document.querySelectorAll(".page").forEach(p => p.classList.remove("active")); btn.classList.add("active"); document.querySelectorAll(".page")[idx].classList.add("active"); window.scrollTo({ top: 0, behavior: 'smooth' }); }); }); }); ================================================ FILE: Module/webroot/js/components/networkStatus.js ================================================ // Network Status Component let lastStatus = null; async function verifyRealInternet() { try { const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 2000); await fetch("https://clients3.google.com/generate_204", { method: "GET", cache: "no-store", signal: controller.signal, }); clearTimeout(timeoutId); return true; } catch { try { const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 2000); await fetch("https://clients3.google.com/generate_204", { method: "GET", cache: "no-store", mode: "no-cors", signal: controller.signal, }); clearTimeout(timeoutId); return true; } catch { return false; } } } async function updateNetworkStatus() { const statusRow = document.getElementById("status-row"); const statusText = document.getElementById("status-bar-text"); if (!statusRow || !statusText) { console.warn("Status elements not found"); return; } // Show temporary status while checking statusText.textContent = t("home_refreshing"); statusRow.title = t("home_refreshing"); const isProbablyOnline = navigator.onLine; const isActuallyOnline = isProbablyOnline && await verifyRealInternet(); if (isActuallyOnline && lastStatus !== "online") { statusRow.classList.replace("offline", "online"); statusText.textContent = t("home_status_online"); statusRow.title = t("status_online"); lastStatus = "online"; } else if (!isActuallyOnline && lastStatus !== "offline") { statusRow.classList.replace("online", "offline"); statusText.textContent = t("home_status_offline"); statusRow.title = t("status_offline"); showToast(t("status_offline"), "error"); lastStatus = "offline"; } else { // Update text only to sync language if (lastStatus === "online") { statusText.textContent = t("home_status_online"); statusRow.title = t("status_online"); } else if (lastStatus === "offline") { statusText.textContent = t("home_status_offline"); statusRow.title = t("status_offline"); } } } // Initialize network status setTimeout(() => { updateNetworkStatus(); setInterval(updateNetworkStatus, 3000); window.addEventListener("online", updateNetworkStatus); window.addEventListener("offline", updateNetworkStatus); }, 500); // Export function window.updateNetworkStatus = updateNetworkStatus; ================================================ FILE: Module/webroot/js/dev.js ================================================ // === Load Contributors and Apply Translations === (function loadContributors() { fetch("json/dev.json") .then(res => { if (!res.ok) throw new Error(`HTTP ${res.status}`); return res.json(); }) .then(data => { const container = document.getElementById("contrib-list"); if (!container || !Array.isArray(data.contributors)) return; container.innerHTML = ""; // Clear any existing entries // Render each contributor data.contributors.forEach(user => { const username = user.username || user.name || "unknown"; const avatar = `https://github.com/${encodeURIComponent(username)}.png`; const profileURL = user.url || "#"; const rawRole = user.role || "Unknown Role"; const roleKey = `role_${rawRole}`; // Use this for translation lookup const card = document.createElement("button"); card.className = "contrib-card"; card.setAttribute("type", "button"); card.addEventListener("click", () => openUrlViaIntent(profileURL)); card.innerHTML = ` ${user.name}
${user.name}
${rawRole}
`; container.appendChild(card); }); // Re-apply language translation after cards are rendered const currentLang = localStorage.getItem("selectedLanguage") || "en"; setTimeout(() => applyLanguage(currentLang), 50); // delay to ensure DOM is updated }) .catch(err => { console.error("Failed to load contributors:", err); }); })(); ================================================ FILE: Module/webroot/js/device.js ================================================ // Device Information Component const BASE_SCRIPT = "/data/adb/modules/Yurikey/webroot/common/"; // Wait until translation data is loaded async function waitForTranslations(timeout = 3000) { const start = Date.now(); while (Date.now() - start < timeout) { if (window.translations && Object.keys(window.translations).length > 0) { return; } await new Promise(r => setTimeout(r, 100)); } console.warn("translations not loaded in time."); } // Wait for valid device-info.json response async function waitForValidDeviceInfo(maxWait = 4000, interval = 400) { const start = Date.now(); while (Date.now() - start < maxWait) { try { const res = await fetch("/json/device-info.json?ts=" + Date.now()); if (!res.ok) throw new Error("Fetch failed"); const data = await res.json(); if (data.android || data.kernel || data.root) return data; } catch (err) {} await new Promise(r => setTimeout(r, interval)); } throw new Error("Timeout waiting for valid device-info.json"); } // Load device info and display it in the UI async function loadDeviceInfo() { try { const res = await fetch("/json/device-info.json?ts=" + Date.now()); if (!res.ok) throw new Error("Failed to fetch"); const data = await res.json(); document.getElementById("android-version").innerText = data.android || "-"; document.getElementById("kernel-version").innerText = data.kernel || "-"; document.getElementById("root-type").innerText = data.root || "-"; } catch (err) { console.error("loadDeviceInfo() error:", err); document.getElementById("android-version").innerText = "Error"; document.getElementById("kernel-version").innerText = "Error"; document.getElementById("root-type").innerText = "Error"; } } // Execute a shell script with KernelSU function runScript(scriptName, callback) { const fullPath = `${BASE_SCRIPT}${scriptName}`; if (typeof ksu === "object" && typeof ksu.exec === "function") { const cbId = `cb_${Date.now()}`; window[cbId] = () => { delete window[cbId]; if (typeof callback === "function") callback(); }; ksu.exec(`sh '${fullPath}'`, "{}", cbId); } else { console.warn("ksu.exec not available."); if (typeof callback === "function") callback(); } } // Setup refresh button behavior with translation and animation function setupRefreshButton() { const refreshBtn = document.getElementById("refresh-info-btn"); if (!refreshBtn) return; const scriptName = refreshBtn.dataset.script; refreshBtn.addEventListener("click", () => { if (refreshBtn.disabled) return; refreshBtn.disabled = true; refreshBtn.classList.add("rotating"); runScript(scriptName, async () => { try { const data = await waitForValidDeviceInfo(); document.getElementById("android-version").innerText = data.android || "-"; document.getElementById("kernel-version").innerText = data.kernel || "-"; document.getElementById("root-type").innerText = data.root || "-"; } catch (err) { console.warn("Could not update device info:", err); } refreshBtn.classList.remove("rotating"); refreshBtn.disabled = false; }); }); } // Init device info and action buttons on page load window.addEventListener("DOMContentLoaded", async () => { await waitForTranslations(); // Make sure translations are loaded loadDeviceInfo(); // Load initial device info setupRefreshButton(); // Setup refresh button // Bind all action buttons to their scripts document.querySelectorAll(".action-buttons .menu-btn").forEach(button => { const scriptName = button.dataset.script; if (scriptName) { button.addEventListener("click", () => runScript(scriptName)); } }); }); window.loadDeviceInfo = loadDeviceInfo; ================================================ FILE: Module/webroot/js/main.js ================================================ // Main Application Entry Point // This file orchestrates the loading of all components and utilities document.addEventListener("DOMContentLoaded", () => { console.log("main.js active"); const BASE_SCRIPT = "/data/adb/modules/Yurikey/Yuri/"; // Register click events for buttons in Actions Page document.querySelectorAll("#actions-page .menu-btn[data-script]").forEach(button => { const scriptName = button.dataset.script; if (scriptName) { button.addEventListener("click", () => runScript(scriptName, BASE_SCRIPT, button)); } }); // Register click events for buttons in Advanced Menu Page document.querySelectorAll("#advance-menu .menu-btn[data-script]").forEach(button => { const scriptName = button.dataset.script; if (scriptName) { button.addEventListener("click", () => runScript(scriptName, BASE_SCRIPT, button)); } }); const historyCard = document.getElementById("module-version-card"); const historyDialog = document.getElementById("script-history-dialog"); const historyOverlay = document.getElementById("script-history-overlay"); const historyCloseBtn = document.getElementById("script-history-close"); const historyClearBtn = document.getElementById("script-history-clear"); historyCard?.addEventListener("click", openHistoryDialog); historyCloseBtn?.addEventListener("click", closeHistoryDialog); historyOverlay?.addEventListener("click", closeHistoryDialog); historyDialog?.addEventListener("close", () => historyOverlay?.classList.remove("active")); historyClearBtn?.addEventListener("click", () => { writeHistory([]); renderHistoryDialog(); }); // Refresh info button event const refreshBtn = document.getElementById("refresh-info-btn"); if (refreshBtn) { refreshBtn.addEventListener("click", () => { showToast(t("home_refreshing"), "info"); updateNetworkStatus(); if (window.loadDeviceInfo) { window.loadDeviceInfo(); } }); } }); ================================================ FILE: Module/webroot/js/redirect.js ================================================ // === Function: Open a URL using Android Intent via KernelSU === function openUrlViaIntent(url) { if (!url || typeof url !== "string") return; // Build the intent command to open the URL const intentCmd = `nohup am start -a android.intent.action.VIEW -d '${url}' >/dev/null 2>&1 &`; // Check if KernelSU is available and execute the intent command if (typeof ksu === "object" && typeof ksu.exec === "function") { const cbId = `cb_${Date.now()}`; window[cbId] = () => delete window[cbId]; ksu.exec(intentCmd, "{}", cbId); } else { // Fallback for non-KernelSU environments (desktop browser, webview without exec bridge) try { const opened = window.open(url, "_blank", "noopener,noreferrer"); if (!opened) { window.location.href = url; } } catch { window.location.href = url; } } } // === Function: Attach click listeners to elements with [data-url] === function setupIntentLinks(selector = "[data-url]") { document.querySelectorAll(selector).forEach(button => { const url = button.dataset.url; if (url) { button.addEventListener("click", () => openUrlViaIntent(url)); } }); } // === Initialize: Run setup when the DOM is fully loaded === window.addEventListener("DOMContentLoaded", () => { setupIntentLinks(); }); ================================================ FILE: Module/webroot/js/theme.js ================================================ const THEME_MODE_KEY = "themeMode"; const THEME_PRESET_KEY = "themePreset"; const SNACKBAR_COLOR_KEYS = { info: "snackbarInfoColor", success: "snackbarSuccessColor", warning: "snackbarWarningColor", error: "snackbarErrorColor", text: "snackbarTextColor", }; const SNACKBAR_DEFAULTS = { info: "#2196f3", success: "#43a047", warning: "#f9a825", error: "#e53935", text: "#ffffff", }; const THEME_PRESETS = { ocean: { dark: { "--ui-bg": "#111a26", "--ui-card-bg": "#1d2a3a", "--ui-card-border": "#334759", "--ui-pill-bg": "#9ecaff", "--ui-pill-text": "#003258", "--ui-nav-active": "#00497d", "--ui-nav-text": "#d1e4ff", "--ui-select-bg": "#3a546f", "--ui-select-border": "#6f90b2", "--ui-select-panel": "#273a4e", "--ui-select-panel-border": "#587493" }, light:{ "--ui-bg": "#e9f2ff", "--ui-card-bg": "#f2f7ff", "--ui-card-border": "#c6d8ef", "--ui-pill-bg": "#0061a4", "--ui-pill-text": "#ffffff", "--ui-nav-active": "#0061a4", "--ui-nav-text": "#001d36", "--ui-select-bg": "#d1e4ff", "--ui-select-border": "#b2cbe9", "--ui-select-panel": "#e2eeff", "--ui-select-panel-border": "#c3d8f3" }, }, rose: { dark: { "--ui-bg": "#221516", "--ui-card-bg": "#362124", "--ui-card-border": "#5a3539", "--ui-pill-bg": "#ffb4a9", "--ui-pill-text": "#690002", "--ui-nav-active": "#930005", "--ui-nav-text": "#ffdad5", "--ui-select-bg": "#5f3a3e", "--ui-select-border": "#9a6c72", "--ui-select-panel": "#452a2d", "--ui-select-panel-border": "#7a4c51" }, light:{ "--ui-bg": "#fff3f1", "--ui-card-bg": "#ffe8e4", "--ui-card-border": "#efc7c1", "--ui-pill-bg": "#bb1614", "--ui-pill-text": "#ffffff", "--ui-nav-active": "#bb1614", "--ui-nav-text": "#410001", "--ui-select-bg": "#ffdad5", "--ui-select-border": "#e4b7b1", "--ui-select-panel": "#ffe9e5", "--ui-select-panel-border": "#e8c1bc" }, }, forest: { dark: { "--ui-bg": "#132016", "--ui-card-bg": "#1d3222", "--ui-card-border": "#365441", "--ui-pill-bg": "#78dc77", "--ui-pill-text": "#00390a", "--ui-nav-active": "#005313", "--ui-nav-text": "#94f990", "--ui-select-bg": "#355142", "--ui-select-border": "#6f9a7f", "--ui-select-panel": "#253b2b", "--ui-select-panel-border": "#5d7e68" }, light:{ "--ui-bg": "#eff9ef", "--ui-card-bg": "#f5fcf4", "--ui-card-border": "#cce3cd", "--ui-pill-bg": "#006e1c", "--ui-pill-text": "#ffffff", "--ui-nav-active": "#006e1c", "--ui-nav-text": "#002204", "--ui-select-bg": "#94f990", "--ui-select-border": "#77d274", "--ui-select-panel": "#def6dd", "--ui-select-panel-border": "#b8dfb7" }, }, sunset: { dark: { "--ui-bg": "#241911", "--ui-card-bg": "#39291b", "--ui-card-border": "#5d4330", "--ui-pill-bg": "#ffb870", "--ui-pill-text": "#4a2800", "--ui-nav-active": "#693c00", "--ui-nav-text": "#ffdcbe", "--ui-select-bg": "#594131", "--ui-select-border": "#8f6a4e", "--ui-select-panel": "#3f2d20", "--ui-select-panel-border": "#73543d" }, light:{ "--ui-bg": "#fff4ea", "--ui-card-bg": "#fff8f2", "--ui-card-border": "#ecd3bc", "--ui-pill-bg": "#8b5000", "--ui-pill-text": "#ffffff", "--ui-nav-active": "#8b5000", "--ui-nav-text": "#2c1600", "--ui-select-bg": "#ffdcbe", "--ui-select-border": "#e8bf98", "--ui-select-panel": "#ffeddc", "--ui-select-panel-border": "#edcdb0" }, }, violet: { dark: { "--ui-bg": "#1f1626", "--ui-card-bg": "#30243a", "--ui-card-border": "#52405f", "--ui-pill-bg": "#f9abff", "--ui-pill-text": "#570066", "--ui-nav-active": "#7b008f", "--ui-nav-text": "#ffd6fe", "--ui-select-bg": "#4f3d5e", "--ui-select-border": "#8b74a0", "--ui-select-panel": "#3a2d47", "--ui-select-panel-border": "#715788" }, light:{ "--ui-bg": "#f9ecff", "--ui-card-bg": "#fdf5ff", "--ui-card-border": "#e4cdee", "--ui-pill-bg": "#9a25ae", "--ui-pill-text": "#ffffff", "--ui-nav-active": "#9a25ae", "--ui-nav-text": "#35003f", "--ui-select-bg": "#ffd6fe", "--ui-select-border": "#e8b8e8", "--ui-select-panel": "#ffe9ff", "--ui-select-panel-border": "#eecbf1" }, }, }; function hexToRgb(hex) { const h = hex.replace("#", ""); const n = h.length === 3 ? h.split("").map(c => c + c).join("") : h; const int = parseInt(n, 16); return { r: (int >> 16) & 255, g: (int >> 8) & 255, b: int & 255 }; } function rgbToHex({ r, g, b }) { return `#${[r, g, b].map(v => v.toString(16).padStart(2, "0")).join("")}`; } function mix(a, b, t) { const c1 = hexToRgb(a), c2 = hexToRgb(b); return rgbToHex({ r: Math.round(c1.r + (c2.r - c1.r) * t), g: Math.round(c1.g + (c2.g - c1.g) * t), b: Math.round(c1.b + (c2.b - c1.b) * t) }); } function getStoredMode() { return localStorage.getItem(THEME_MODE_KEY) || "dark"; } function getResolvedMode(mode) { return mode === "auto" ? (window.matchMedia("(prefers-color-scheme: light)").matches ? "light" : "dark") : (mode || "dark"); } function getStoredPreset() { const preset = localStorage.getItem(THEME_PRESET_KEY) || "ocean"; return THEME_PRESETS[preset] ? preset : "ocean"; } function themeText(key, fallback) { return window.translations?.[key] || fallback; } function modeLabel(mode) { if (mode === "auto") return themeText("theme_mode_auto", "Auto (System)"); if (mode === "light") return themeText("theme_mode_light", "Light"); return themeText("theme_mode_dark", "Dark"); } function withDerived(colors, mode) { const base = colors["--ui-pill-bg"]; const pillText = colors["--ui-pill-text"] || (mode === "light" ? "#ffffff" : "#231531"); return { ...colors, "--ui-pill-bg-hover": mix(base, mode === "light" ? "#ffffff" : "#f8d8e8", 0.18), "--ui-pill-border": mix(base, mode === "light" ? "#ffffff" : "#f9e7f2", 0.35), "--ui-nav-text-active": "#ffffff", "--ui-pill-text": pillText, }; } function applyColors(rawColors) { const root = document.documentElement; Object.entries(rawColors).forEach(([k, v]) => root.style.setProperty(k, v)); } function applyThemeMode(mode) { const resolved = getResolvedMode(mode); document.documentElement.setAttribute("data-theme-mode", resolved); return resolved; } function applyThemePreset(presetName) { const mode = document.documentElement.getAttribute("data-theme-mode") || "dark"; const preset = THEME_PRESETS[presetName] || THEME_PRESETS.ocean; applyColors(withDerived(preset[mode] || preset.dark, mode)); document.querySelectorAll(".theme-preset-btn").forEach(btn => btn.classList.toggle("active", btn.dataset.themePreset === presetName)); } function normalizeHex(value, fallback = "#2196f3") { const raw = (value || "").trim(); const match = raw.match(/^#?[0-9a-fA-F]{6}$/); if (!match) return fallback; return raw.startsWith("#") ? raw.toLowerCase() : `#${raw.toLowerCase()}`; } function hexToRgbTuple(hex) { const n = normalizeHex(hex).replace("#", ""); return { r: parseInt(n.slice(0, 2), 16), g: parseInt(n.slice(2, 4), 16), b: parseInt(n.slice(4, 6), 16), }; } function rgbToHexTuple(r, g, b) { return `#${[r, g, b].map(v => Number(v).toString(16).padStart(2, "0")).join("")}`; } function setSnackbarColor(type, value) { const key = SNACKBAR_COLOR_KEYS[type]; const normalized = normalizeHex(value, SNACKBAR_DEFAULTS[type]); localStorage.setItem(key, normalized); document.documentElement.style.setProperty(`--snackbar-${type}`, normalized); const input = document.getElementById(`snackbar-${type}-color`); const preview = document.getElementById(`snackbar-${type}-preview`); if (input) input.value = normalized; if (preview) preview.style.background = normalized; return normalized; } function applySnackbarColors() { Object.entries(SNACKBAR_COLOR_KEYS).forEach(([type, key]) => { const value = localStorage.getItem(key) || SNACKBAR_DEFAULTS[type]; setSnackbarColor(type, value); }); } function bindSnackbarColorInputs() { Object.keys(SNACKBAR_COLOR_KEYS).forEach(type => { const input = document.getElementById(`snackbar-${type}-color`); if (!input) return; input.addEventListener("change", () => setSnackbarColor(type, input.value)); input.addEventListener("blur", () => setSnackbarColor(type, input.value)); }); } function bindSnackbarColorTool() { const target = document.getElementById("snackbar-color-target"); const hexInput = document.getElementById("snackbar-color-tool-hex"); const preview = document.getElementById("snackbar-color-tool-preview"); const rangeR = document.getElementById("snackbar-color-r"); const rangeG = document.getElementById("snackbar-color-g"); const rangeB = document.getElementById("snackbar-color-b"); const applyBtn = document.getElementById("snackbar-color-tool-apply"); if (!target || !hexInput || !preview || !rangeR || !rangeG || !rangeB || !applyBtn) return; const syncFromHex = (hex) => { const rgb = hexToRgbTuple(hex); rangeR.value = rgb.r; rangeG.value = rgb.g; rangeB.value = rgb.b; preview.style.background = normalizeHex(hex); hexInput.value = normalizeHex(hex); }; const syncFromTarget = () => { const type = target.value || "info"; const input = document.getElementById(`snackbar-${type}-color`); syncFromHex(input?.value || SNACKBAR_DEFAULTS[type]); }; const syncFromRanges = () => { const hex = rgbToHexTuple(rangeR.value, rangeG.value, rangeB.value); preview.style.background = hex; hexInput.value = hex; }; target.addEventListener("change", syncFromTarget); [rangeR, rangeG, rangeB].forEach(range => range.addEventListener("input", syncFromRanges)); hexInput.addEventListener("input", () => { if (/^#?[0-9a-fA-F]{6}$/.test(hexInput.value.trim())) { syncFromHex(hexInput.value); } }); applyBtn.addEventListener("click", () => { const type = target.value || "info"; const applied = setSnackbarColor(type, hexInput.value); syncFromHex(applied); }); syncFromTarget(); } window.addEventListener("DOMContentLoaded", () => { const modeBtn = document.getElementById("theme-mode-btn"); const modeOptions = document.getElementById("theme-mode-options"); const mode = getStoredMode(); modeBtn.innerText = modeLabel(mode); applyThemeMode(mode); modeBtn.addEventListener("click", (e) => { e.stopPropagation(); modeOptions.classList.toggle("show"); }); modeOptions.querySelectorAll("li[data-mode]").forEach(item => { item.addEventListener("click", () => { const m = item.dataset.mode || "dark"; localStorage.setItem(THEME_MODE_KEY, m); modeBtn.innerText = modeLabel(m); modeOptions.classList.remove("show"); applyThemeMode(m); applyThemePreset(getStoredPreset()); }); }); document.addEventListener("click", (e) => { if (!modeOptions.contains(e.target) && e.target !== modeBtn) modeOptions.classList.remove("show"); }); document.querySelectorAll(".theme-preset-btn").forEach(btn => { btn.addEventListener("click", () => { const p = btn.dataset.themePreset; if (!p || !THEME_PRESETS[p]) return; localStorage.setItem(THEME_PRESET_KEY, p); applyThemePreset(p); }); }); applyThemePreset(getStoredPreset()); applySnackbarColors(); bindSnackbarColorInputs(); bindSnackbarColorTool(); window.matchMedia("(prefers-color-scheme: light)").addEventListener("change", () => { if (getStoredMode() === "auto") { applyThemeMode("auto"); applyThemePreset(getStoredPreset()); } }); document.addEventListener("languageChanged", () => { modeBtn.innerText = modeLabel(getStoredMode()); }); }); ================================================ FILE: Module/webroot/js/utils/i18n.js ================================================ // Internationalization Utilities const LANG_PATH = "lang/"; const DEFAULT_LANG = "en"; let translations = {}; window.translations = translations; // Translation helper function function t(key) { return window.translations?.[key] || key; } // Interpolation formatter for translation strings function tFormat(key, vars = {}) { let str = t(key); Object.keys(vars).forEach(k => { str = str.replace(`{${k}}`, vars[k]); }); return str; } // Load and apply translations to all elements async function applyLanguage(langCode) { try { let fetchUrl = `${LANG_PATH}${langCode}.json?ts=${Date.now()}`; if (langCode === 'en') { fetchUrl = `${LANG_PATH}source/string.json?ts=${Date.now()}`; } const res = await fetch(fetchUrl); const json = await res.json(); translations = json; window.translations = json; // Apply to elements using [data-i18n] attribute document.querySelectorAll("[data-i18n]").forEach(el => { const key = el.getAttribute("data-i18n"); if (translations[key]) { if (el.children.length > 0) { const hasHTMLContent = el.innerHTML.includes('<'); if (hasHTMLContent) { el.innerHTML = translations[key]; } else { const walker = document.createTreeWalker( el, NodeFilter.SHOW_TEXT, null, false ); let textNodes = []; let textNode; while (textNode = walker.nextNode()) { if (textNode.nodeValue.trim()) { textNodes.push(textNode); } } if (textNodes.length > 0) { textNodes[0].nodeValue = translations[key]; for (let i = 1; i < textNodes.length; i++) { textNodes[i].remove(); } } else { el.appendChild(document.createTextNode(translations[key])); } } } else { el.innerText = translations[key]; } } }); // Update refresh button text if available const refreshBtn = document.getElementById("refresh-info-btn"); if (refreshBtn && refreshBtn.getAttribute("data-i18n")) { const defaultKey = refreshBtn.getAttribute("data-i18n"); refreshBtn.innerText = t(defaultKey); } // Save the selected language in localStorage document.documentElement.lang = langCode; localStorage.setItem("selectedLanguage", langCode); // Call updateNetworkStatus to refresh network status text in new language with a slight delay if (typeof window.updateNetworkStatus === "function") { setTimeout(() => window.updateNetworkStatus(), 100); } document.dispatchEvent(new CustomEvent("languageChanged", { detail: { language: langCode, translations: translations } })); } catch (err) { console.error("Failed to load language:", err); } } // Handle dropdown language selection function setupLanguageDropdown(currentLang) { const langBtn = document.getElementById("lang-btn"); const langOptions = document.getElementById("lang-options"); const activeItem = document.querySelector(`#lang-options li[data-lang='${currentLang}']`); if (langBtn && activeItem) langBtn.innerText = activeItem.innerText; // Toggle dropdown visibility langBtn?.addEventListener("click", (e) => { e.stopPropagation(); langOptions?.classList.toggle("show"); }); // Close dropdown if clicked outside document.addEventListener("click", (e) => { if (!langOptions.contains(e.target) && e.target !== langBtn) { langOptions?.classList.remove("show"); } }); // Handle language option click document.querySelectorAll("#lang-options li").forEach(item => { item.addEventListener("click", () => { const lang = item.getAttribute("data-lang"); applyLanguage(lang); langOptions?.classList.remove("show"); langBtn.innerText = item.innerText; }); }); } // Initialize language and dropdown on page load document.addEventListener("DOMContentLoaded", async () => { const savedLang = localStorage.getItem("selectedLanguage") || DEFAULT_LANG; await applyLanguage(savedLang); setupLanguageDropdown(savedLang); }); // Export functions to window object window.t = t; window.tFormat = tFormat; window.applyLanguage = applyLanguage; window.setupLanguageDropdown = setupLanguageDropdown; ================================================ FILE: Module/webroot/js/utils/scriptExecutor.js ================================================ // Script Execution Utilities const SCRIPT_HISTORY_KEY = "scriptHistoryLogs"; function getScriptExecutor() { if (typeof window.YuriKeyHost?.execScript === "function") { return (scriptPath, scriptName, cb) => { Promise.resolve(window.YuriKeyHost.execScript(scriptPath, scriptName)) .then(result => cb(typeof result === "string" ? result : JSON.stringify(result))) .catch(() => cb("")); }; } if (typeof window.execYurikeyScript === "function") { return (scriptPath, scriptName, cb) => { Promise.resolve(window.execYurikeyScript(scriptPath, scriptName)) .then(result => cb(typeof result === "string" ? result : JSON.stringify(result))) .catch(() => cb("")); }; } if (typeof ksu === "object" && typeof ksu.exec === "function") { return (scriptPath, _scriptName, cbName) => ksu.exec(`sh "${scriptPath}"`, "{}", cbName); } return null; } function readHistory() { try { const parsed = JSON.parse(localStorage.getItem(SCRIPT_HISTORY_KEY) || "[]"); return Array.isArray(parsed) ? parsed : []; } catch { return []; } } function writeHistory(items) { localStorage.setItem(SCRIPT_HISTORY_KEY, JSON.stringify(items.slice(0, 80))); } function addScriptHistory(scriptName, outputText) { const cleanOutput = (outputText || "").trim(); if (!cleanOutput) return; const history = readHistory(); history.unshift({ script: scriptName, output: cleanOutput, time: new Date().toLocaleString(), }); writeHistory(history); } function renderHistoryDialog() { const contentEl = document.getElementById("script-history-content"); if (!contentEl) return; const history = readHistory(); if (!history.length) { contentEl.textContent = t("script_history_empty"); return; } contentEl.innerHTML = history.map(item => { const script = item.script || "script"; const time = item.time || ""; const output = (item.output || "") .replace(/&/g, "&") .replace(//g, ">") .replace(/\n/g, "
"); return `
[${time}] ${script}
${output}

`; }).join(""); } function openHistoryDialog() { const dialog = document.getElementById("script-history-dialog"); const overlay = document.getElementById("script-history-overlay"); if (!dialog || !overlay) return; renderHistoryDialog(); overlay.classList.add("active"); if (!dialog.open) dialog.showModal(); } function closeHistoryDialog() { const dialog = document.getElementById("script-history-dialog"); const overlay = document.getElementById("script-history-overlay"); if (!dialog || !overlay) return; if (dialog.open) dialog.close(); overlay.classList.remove("active"); } function handleScriptResult(rawOutput, scriptName) { const raw = typeof rawOutput === "string" ? rawOutput.trim() : ""; if (!raw) { showToast(tFormat("success", { script: scriptName }), "success", 3000); return; } try { const json = JSON.parse(raw); if (json.success) { const commandOutput = typeof json.output === "string" ? json.output.trim() : ""; addScriptHistory(scriptName, commandOutput || tFormat("success", { script: scriptName })); showToast(tFormat("success", { script: scriptName }), "success", 3000); } else { addScriptHistory(scriptName, raw); showToast(t("script_execution_failed_generic"), "error", 4000); } } catch { addScriptHistory(scriptName, raw); showToast(tFormat("success", { script: scriptName }), "success", 3500); } } function runScript(scriptName, basePath, button) { const scriptPath = `${basePath}${scriptName}`; const executeScript = getScriptExecutor(); const originalClass = button.className; button.classList.add("executing"); const cb = `cb_${Date.now()}_${Math.floor(Math.random() * 1000)}`; let timeoutId; window[cb] = (output) => { clearTimeout(timeoutId); delete window[cb]; button.className = originalClass; handleScriptResult(output, scriptName); }; try { if (!executeScript) { throw new Error("executor-unavailable"); } showToast(tFormat("executing", { script: scriptName }), "info"); executeScript(scriptPath, scriptName, cb); } catch (_e) { clearTimeout(timeoutId); delete window[cb]; button.className = originalClass; addScriptHistory(scriptName, t("script_execution_failed_generic")); showToast(t("script_execution_failed_generic"), "error", 4500); return; } timeoutId = setTimeout(() => { delete window[cb]; button.className = originalClass; addScriptHistory(scriptName, tFormat("timeout", { script: scriptName })); showToast(t("script_execution_failed_generic"), "error", 4500); }, 7000); } // Export functions to window object window.getScriptExecutor = getScriptExecutor; window.readHistory = readHistory; window.writeHistory = writeHistory; window.addScriptHistory = addScriptHistory; window.renderHistoryDialog = renderHistoryDialog; window.openHistoryDialog = openHistoryDialog; window.closeHistoryDialog = closeHistoryDialog; window.handleScriptResult = handleScriptResult; window.runScript = runScript; ================================================ FILE: Module/webroot/js/utils/toast.js ================================================ // Toast Notification Utilities let toastTimer; function showToast(message, type = "info", duration = 3000) { const snackbar = document.getElementById("snackbar"); if (!snackbar) return; snackbar.textContent = message; snackbar.className = `snackbar show ${type}`; clearTimeout(toastTimer); toastTimer = setTimeout(() => { snackbar.classList.remove("show"); }, duration); } // Export toast functions to window object window.showToast = showToast; window.showSuccessToast = (message, duration = 3000) => showToast(message, "success", duration); window.showErrorToast = (message, duration = 4000) => showToast(message, "error", duration); window.showWarningToast = (message, duration = 3500) => showToast(message, "warning", duration); window.showInfoToast = (message, duration = 3000) => showToast(message, "info", duration); ================================================ FILE: Module/webroot/js/version.js ================================================ // ========== EXECUTOR FUNCTION ========== // Executes a shell command using KernelSU and returns a Promise with the output function exec(command) { return new Promise((resolve, reject) => { const cb = `cb_${Date.now()}`; window[cb] = (code, out, err) => { delete window[cb]; code ? reject(err || "Unknown error") : resolve(out); }; ksu.exec(command, "{}", cb); }); } // ========== VERSION MODULE DETECTION ========== // Reads the 'version' from /data/adb/modules/Yurikey/module.prop async function loadVersionFromModuleProp() { const versionElement = document.getElementById('version-text'); try { const version = await exec("grep '^version=' /data/adb/modules/Yurikey/module.prop | cut -d'=' -f2"); versionElement.textContent = version.trim(); } catch (error) { appendToOutput("[!] Failed to read version from module.prop"); console.error("Failed to read version from module.prop:", error); } } // ========== DOM INITIALIZATION ========== document.addEventListener('DOMContentLoaded', () => { loadVersionFromModuleProp(); }); ================================================ FILE: Module/webroot/json/dev.json ================================================ { "project": "Project Contributors", "contributors": [ { "name": "Yuri", "username": "Yurii0307", "role": "Founder & Module Developer", "url": "https://github.com/Yurii0307" }, { "name": "Tam", "username": "Tam97123", "role": "Module Developer", "url": "https://github.com/Tam97123" }, { "name": "yourbestregard", "username": "yourbestregard", "role": "Module Developer", "url": "https://github.com/yourbestregard" }, { "name": "CEHunter", "username": "cvnertnc", "role": "Module/WebUI Developer", "url": "https://github.com/cvnertnc" }, { "name": "ZG089", "username": "ZG089", "role": "Module Developer", "url": "https://github.com/ZG089" }, { "name": "Munch", "username": "SudoNothing404", "role": "WebUI Developer", "url": "https://github.com/SudoNothing404" }, { "name": "Wes", "username": "p0ntu5", "role": "WebUI Developer", "url": "https://github.com/ihatenodejs" }, { "name": "Khx", "username": "dpejoh", "role": "Ex Module Developer", "url": "https://github.com/dpejoh" }, { "name": "HzzMonet", "username": "hzzmonet", "role": "Feminine Boy", "url": "https://github.com/hzzmonetvn" } ] } ================================================ FILE: Module/webroot/lang/af.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/ar.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/ca.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/cs.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/da.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/de.json ================================================ { "nav_home": "Home", "nav_menu": "Menü", "nav_update": "Update", "nav_settings": "Einstellungen", "home_version": "Version", "home_root": "Root Implementation", "home_refresh": "Aktualisieren der Info", "home_refreshing": "Aktualisieren...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Uhrzeit Datum", "home_clock_time": "Uhrzeit", "menu_title": "Hauptmenü", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Setze Yuri Keybox", "menu_target": "Setzte Tarket.txt", "menu_necessary": "Setze nur benötigte App", "menu_patch": "Setzte Sicherheitspatch", "advance_menu_title": "Erweitertes Menü", "advance_clear_all_detection_traces": "Lösche alle Erkennungspfade", "advance_set_hma-oss_configs": "Setzte HMA-oss Konfiguration", "advance_fix_detect_lsposed": "Repariere auffinden von lsposed (2)", "advance_fix_detect_pif": "Repariere PIF Erkennung (1)", "advance_fix_detect_recovery_file": "Repariere auffinden von Recovery Datei", "advance_kill_all": "Stoppe alle Prozesse", "advance_set_verified_boot": "Setze verifizieren Boothash", "update_title": "Update und Support", "update_desc": "Bleib auf Stand mit der neusten Version von Yurikey, Fehlerbehebungen, und neuen Funktionen.", "update_github": "Schaue auf Github", "update_telegram": "Besuche Telegram Gruppe", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Projektbeteiligte", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Ausführen \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Fehler info zu erneuern!", "home_no_internet": "Keine Internetverbindung.", "home_connected": "Verbunden", "home_disconnected": "Nicht verbunden", "settings_appearance": "Appearance", "settings_clock_format": "Uhrzeit Format", "clock_format_auto": "Auto (Gerät)", "clock_format_24h": "24-Stunden (00:00)", "clock_format_12h": "12-Stunden (AM/PM)", "theme_mode_dark": "Dunkel", "theme_mode_light": "Hell", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Wald", "theme_preset_sunset": "Sonnenaufgang", "theme_preset_violet": "Violett", "settings_title": "Einstellungen", "settings_language": "Sprache", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA Konfiguration", "advance_widevinel1": "Repariere Widevine L1", "nav_advance_menu": "Menü +", "advance_set_zygisk_next_configs": "Setzte Zygisk Next Konfiguration" } ================================================ FILE: Module/webroot/lang/el.json ================================================ { "nav_home": "Αρχική σελίδα", "nav_menu": "Μενού", "nav_update": "Ενημέρωση", "nav_settings": "Ρυθμίσεις", "home_version": "Έκδοση ενότητας", "home_root": "Υλοποίηση Root", "home_refresh": "Ανανέωση Πληροφοριών", "home_refreshing": "Ανανέωση...", "home_status": "Κατάσταση", "home_status_online": "Συνδεδεμένος", "home_status_offline": "Εκτός σύνδεσης", "home_clock_date": "Ημερομηνία ρολογιού", "home_clock_time": "Ώρα ρολογιού", "menu_title": "ΚΥΡΙΩΣ ΜΕΝΟΥ", "menu_force_clear": "Αναγκαστική διακοπή και διαγραφή δεδομένων στο Play Store", "menu_keybox": "Ρύθμιση του Yuri Keybox", "menu_target": "Ρύθμιση Στόχου.txt", "menu_necessary": "Ορίστε μόνο την απαραίτητη εφαρμογή", "menu_patch": "Ρύθμιση ενημέρωσης κώδικα ασφαλείας", "advance_menu_title": "Μενού για προχωρημένους", "advance_clear_all_detection_traces": "Διαγραφή όλων των ιχνών ανίχνευσης", "advance_set_hma-oss_configs": "Ορισμός ρυθμίσεων HMA-oss", "advance_fix_detect_lsposed": "Διόρθωση Εντοπισμός lsposed (2)", "advance_fix_detect_pif": "Διόρθωση Εντοπισμός PIF (1)", "advance_fix_detect_recovery_file": "Διόρθωση Εντοπισμός αρχείου ανάκτησης", "advance_kill_all": "Τερματισμός Όλων Των Διεργασιών", "advance_set_verified_boot": "Ρύθμιση Επαληθευμένου Boothash", "update_title": "ΕΝΗΜΕΡΩΣΗ & ΥΠΟΣΤΗΡΙΞΗ", "update_desc": "Μείνετε ενημερωμένοι με την τελευταία έκδοση του Yurikey, διορθώσεις σφαλμάτων και νέες δυνατότητες.", "update_github": "Προβολή στο GitHub", "update_telegram": "Γίνετε μέλος του καναλιού Telegram", "update_note": "Γίνετε μέλος του καναλιού μας στο Telegram ή επισκεφθείτε το GitHub για ενημερώσεις, συνεισφορές και τεχνικές συζητήσεις.", "settings_contributors": "Συντελεστές του Έργου", "role_Founder & Module Developer": "Ιδρυτής & Προγραμματιστής Ενοτήτων", "role_Module Developer": "Προγραμματιστής Ενοτήτων", "role_WebUI Developer": "Προγραμματιστής WebUI", "role_Ex Module Developer": "Πρώην Προγραμματιστής Ενοτήτων", "executing": "Εκτέλεση του \"{script}\"...", "success": "Το σενάριο \"{script}\" εκτελέστηκε με επιτυχία.", "failed": "Αποτυχία εκτέλεσης σεναρίου \"{script}\".", "timeout": "Το χρονικό όριο του σεναρίου \"{script}\" έληξε.", "ksu_not_available": "Το KernelSU exec API δεν είναι διαθέσιμο.", "status_online": "Κατάσταση: Συνδεδεμένος/η", "status_offline": "Κατάσταση: Εκτός σύνδεσης", "home_refresh_failed": "Η ανανέωση των πληροφοριών απέτυχε!", "home_no_internet": "Δεν υπάρχει σύνδεση στο διαδίκτυο.", "home_connected": "Συνδεδεμένος", "home_disconnected": "Αποσυνδέθηκε", "settings_appearance": "Εμφάνιση", "settings_clock_format": "Μορφή ρολογιού", "clock_format_auto": "Αυτόματο (Συσκευή)", "clock_format_24h": "24ωρο (00:00)", "clock_format_12h": "12ωρο (ΠΜ/ΜΜ)", "theme_mode_dark": "Σκοτάδι", "theme_mode_light": "Φωτεινό", "theme_mode_auto": "Αυτόματο (Σύστημα)", "theme_preset_ocean": "Ωκεανός", "theme_preset_rose": "Τριαντάφυλλο", "theme_preset_forest": "Δάσος", "theme_preset_sunset": "Ηλιοβασίλεμα", "theme_preset_violet": "Βιολέτα", "settings_title": "Ρυθμίσεις", "settings_language": "Γλώσσα", "menu_keybox_title": "Κλειδοκιβώτιο", "advance_upd_yurirka": "Ενημέρωση διαμόρφωσης RKA", "advance_widevinel1": "Διόρθωση Widevine L1", "nav_advance_menu": "Μενού +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/es.json ================================================ { "nav_home": "Casa", "nav_menu": "Menú", "nav_update": "Actualizar", "nav_settings": "Ajustes", "home_version": "Versión Del módulo", "home_root": "Implementación De Superusuario", "home_refresh": "Información", "home_refreshing": "Refrescando...", "home_status": "Estado", "home_status_online": "Activo", "home_status_offline": "Inactivo", "home_clock_date": "Fecha del reloj", "home_clock_time": "Hora del reloj", "menu_title": "Menú principal", "menu_force_clear": "Detener Google Play Y borrar datos", "menu_keybox": "Configurar", "menu_target": "Configurar Target.txt", "menu_necessary": "Elegir Apps necesarias", "menu_patch": "Elegir parche de seguridad", "advance_menu_title": "Ajustes Avanzados", "advance_clear_all_detection_traces": "Limpiar Detección", "advance_set_hma-oss_configs": "Elegir Configuración HMA", "advance_fix_detect_lsposed": "Corregir Detección (2)", "advance_fix_detect_pif": "Solucionar Detección PIF (1)", "advance_fix_detect_recovery_file": "Solucionar Detección de Recuperación", "advance_kill_all": "Matar todos los procesos", "advance_set_verified_boot": "Configurar Arranque seguro", "update_title": "Actualización Y soporte", "update_desc": "Mantente al día con la última versión correcciones de errores y nuevas funciones.", "update_github": "Ver En el Repositorio", "update_telegram": "Unirte al canal de Telegram", "update_note": "Únete a nuestro canal de Telegram o consulta GitHub para obtener actualizaciones, contribuciones y participar en debates técnicos.", "settings_contributors": "Ayudantes En el proyecto", "role_Founder & Module Developer": "Fundador y desarrollador de módulos", "role_Module Developer": "Creador Del Módulo", "role_WebUI Developer": "Creador de De interfaz de navegación", "role_Ex Module Developer": "Antiguo desarrollador de módulos", "executing": "Ejecutando {script}...", "success": "Script {script} Ejecutado Correctamente.", "failed": "No se ha podido ejecutar {script}.", "timeout": "Script {script} Tiempo Agotado.", "ksu_not_available": "La API SU no está disponible.", "status_online": "Estado: Activo", "status_offline": "Estado: Inactivo", "home_refresh_failed": "No¡ se Ha podido Refrescar la información!", "home_no_internet": "No tienes Conexión A Internet.", "home_connected": "Conectado", "home_disconnected": "Desconectado", "settings_appearance": "Apariencia", "settings_clock_format": "Formato del reloj", "clock_format_auto": "Auto (dispositivo)", "clock_format_24h": "Formato 24 Horas (00:00)", "clock_format_12h": "Formato 12 Horas (AM/PM)", "theme_mode_dark": "Modo Oscuro", "theme_mode_light": "Modo Claro", "theme_mode_auto": "Automático (Sistema)", "theme_preset_ocean": "Océano", "theme_preset_rose": "Rosa", "theme_preset_forest": "Bosque", "theme_preset_sunset": "Atardecer", "theme_preset_violet": "Violeta", "settings_title": "Ajustes", "settings_language": "Idioma", "menu_keybox_title": "Caja de claves", "advance_upd_yurirka": "Actualizar configuración RKA", "advance_widevinel1": "Corregir Vid ancha L1", "nav_advance_menu": "Menú avanzado", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/fi.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/fr.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/he.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/hu.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/it.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Aggiorna", "nav_settings": "Impostazioni", "home_version": "Versione modulo", "home_root": "Implementazione root", "home_refresh": "Aggiorna informazioni", "home_refreshing": "Aggiornamento...", "home_status": "Stato", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Data", "home_clock_time": "Orario", "menu_title": "MENU PRINCIPALE", "menu_force_clear": "Forza la chiusura e cancella i dati del Play Store", "menu_keybox": "Imposta Yuri keybox", "menu_target": "Imposta Target.txt", "menu_necessary": "Imposta solo l'app necessaria", "menu_patch": "Imposta patch di sicurezza", "advance_menu_title": "Menu avanzato", "advance_clear_all_detection_traces": "Cancella tutte le tracce di rilevamento", "advance_set_hma-oss_configs": "Imposta configurazioni HMA-oss", "advance_fix_detect_lsposed": "Correggi rilevamento lsposed (2)", "advance_fix_detect_pif": "Correggi rilevamento PIF (1)", "advance_fix_detect_recovery_file": "Correggi rilevamento file Recovery", "advance_kill_all": "Termina tutti i processi", "advance_set_verified_boot": "Imposta Boothash verificato", "update_title": "AGGIORNAMENTO E SUPPORTO", "update_desc": "Rimani aggiornato con l'ultima versione di Yurikey, correzioni di bug e nuove funzionalità.", "update_github": "Visualizza su GitHub", "update_telegram": "Unisciti al canale Telegram", "update_note": "Unisciti al nostro canale Telegram o controlla GitHub per aggiornamenti, contributi e discussioni tecniche.", "settings_contributors": "Collaboratori del progetto", "role_Founder & Module Developer": "Fondatore e sviluppatore del modulo", "role_Module Developer": "Sviluppatore del modulo", "role_WebUI Developer": "Sviluppatore della WebUI", "role_Ex Module Developer": "Ex sviluppatore del modulo", "executing": "Esecuzione di \"{script}\"...", "success": "Script \"{script}\" eseguito con successo.", "failed": "Errore nell'esecuzione dello script \"{script}\".", "timeout": "Lo script \"{script}\" ha superato il tempo di attesa.", "ksu_not_available": "KernelSU exec API non disponibile.", "status_online": "Stato: online", "status_offline": "Stato: offline", "home_refresh_failed": "Aggiornamento informazioni non riuscito!", "home_no_internet": "Connessione internet assente.", "home_connected": "Connesso", "home_disconnected": "Disconnesso", "settings_appearance": "Aspetto", "settings_clock_format": "Formato orologio", "clock_format_auto": "Automatico (dispositivo)", "clock_format_24h": "24 ore (00:00)", "clock_format_12h": "12 ore (AM/PM)", "theme_mode_dark": "Scuro", "theme_mode_light": "Chiaro", "theme_mode_auto": "Automatico (sistema)", "theme_preset_ocean": "Oceano", "theme_preset_rose": "Rosa", "theme_preset_forest": "Foresta", "theme_preset_sunset": "Tramonto", "theme_preset_violet": "Viola", "settings_title": "Impostazioni", "settings_language": "Lingua", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Aggiorna configurazione RKA", "advance_widevinel1": "Correggi Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Imposta configurazioni Zygisk Next" } ================================================ FILE: Module/webroot/lang/ja.json ================================================ { "nav_home": "ホーム", "nav_menu": "メニュー", "nav_update": "更新", "nav_settings": "設定", "home_version": "モジュールのバージョン", "home_root": "root の実装", "home_refresh": "情報を更新", "home_refreshing": "更新中...", "home_status": "ステータス", "home_status_online": "オンライン", "home_status_offline": "オフライン", "home_clock_date": "日付", "home_clock_time": "時刻", "menu_title": "メインメニュー", "menu_force_clear": "Play ストアを強制停止とデータを消去", "menu_keybox": "Yuri Keybox を設定", "menu_target": "Target.txt を設定", "menu_necessary": "必要なアプリのみ設定", "menu_patch": "セキュリティパッチを設定", "advance_menu_title": "高度なメニュー", "advance_clear_all_detection_traces": "検出の痕跡をすべて消去", "advance_set_hma-oss_configs": "HMA-OSS の構成を設定", "advance_fix_detect_lsposed": "LSPosed の検出を修正 (2)", "advance_fix_detect_pif": "PIF の検出を修正 (1)", "advance_fix_detect_recovery_file": "リカバリーファイルの検出を修正", "advance_kill_all": "すべてのプロセスを停止", "advance_set_verified_boot": "確認付きブートハッシュを設定", "update_title": "更新とサポート", "update_desc": "Yurikey の最新バージョン、バグ修正、新機能に関する最新情報を入手しましょう。", "update_github": "GitHub を表示", "update_telegram": "Telegram チャンネルに参加", "update_note": "最新情報、貢献、技術的な議論については、Telegram のチャンネルにご参加いただくか、GitHub をご確認ください。", "settings_contributors": "プロジェクトの貢献者", "role_Founder & Module Developer": "創設者とモジュールの開発者", "role_Module Developer": "モジュールの開発者", "role_WebUI Developer": "WebUI の開発者", "role_Ex Module Developer": "モジュールの元開発者", "executing": "「{script}」を実行中...", "success": "「{script}」のスクリプトの実行に成功しました。", "failed": "「{script}」のスクリプトの実行に失敗しました。", "timeout": "「{script}」のスクリプトがタイムアウトしました。", "ksu_not_available": "KernelSU exec API は利用できません。", "status_online": "ステータス: オンライン", "status_offline": "ステータス: オフライン", "home_refresh_failed": "情報の更新に失敗しました!", "home_no_internet": "インターネットに未接続です。", "home_connected": "接続", "home_disconnected": "切断", "settings_appearance": "外観", "settings_clock_format": "時計のフォーマット", "clock_format_auto": "自動 (デバイス)", "clock_format_24h": "24 時間制 (00:00)", "clock_format_12h": "12 時間制 (午前/午後)", "theme_mode_dark": "ダーク", "theme_mode_light": "ライト", "theme_mode_auto": "自動 (システム)", "theme_preset_ocean": "オーシャン", "theme_preset_rose": "ローズ", "theme_preset_forest": "フォレスト", "theme_preset_sunset": "サンセット", "theme_preset_violet": "バイオレット", "settings_title": "設定", "settings_language": "言語", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "RKA の構成を更新", "advance_widevinel1": "Widevine L1 の修正", "nav_advance_menu": "メニュー +", "advance_set_zygisk_next_configs": "Zygisk Next の構成を設定" } ================================================ FILE: Module/webroot/lang/ko.json ================================================ { "nav_home": "홈", "nav_menu": "메뉴", "nav_update": "업데이트", "nav_settings": "설정", "home_version": "모듈 버전", "home_root": "루트 구현", "home_refresh": "정보 새로고침", "home_refreshing": "새로고침중...", "home_status": "상태", "home_status_online": "온라인", "home_status_offline": "오프라인", "home_clock_date": "날짜", "home_clock_time": "시간", "menu_title": "메인 메뉴", "menu_force_clear": "Play 스토어 강제 종료 및 데이터 삭제", "menu_keybox": "Yuri Keybox 설정", "menu_target": "Target.txt 설정", "menu_necessary": "필수 앱만 설정", "menu_patch": "보안 패치 설정", "advance_menu_title": "고급 메뉴", "advance_clear_all_detection_traces": "모든 탐지 흔적 지우기", "advance_set_hma-oss_configs": "HMA-oss 구성 설정", "advance_fix_detect_lsposed": "LSPosed 탐지 수정 (2)", "advance_fix_detect_pif": "PIF 탐지 수정 (1)", "advance_fix_detect_recovery_file": "리커버리 파일 탐지 수정", "advance_kill_all": "모든 프로세스 종료", "advance_set_verified_boot": "검증된 부트 해시 설정", "update_title": "업데이트 및 지원", "update_desc": "최신 버전의 Yurikey, 버그 수정 및 새로운 기능에 대한 최신 정보를 확인하세요.", "update_github": "GitHub에서 보기", "update_telegram": "Telegram 채널 가입", "update_note": "Telegram 채널에 가입하거나 GitHub에서 업데이트, 기여 및 기술 토론을 확인하세요.", "settings_contributors": "프로젝트 기여자", "role_Founder & Module Developer": "설립자 및 모듈 개발자", "role_Module Developer": "모듈 개발자", "role_WebUI Developer": "WebUI 개발자", "role_Ex Module Developer": "전 모듈 개발자", "executing": "\"{script}\" 실행중...", "success": "스크립트 \"{script}\"를 성공적으로 실행하였습니다.", "failed": "스크립트 \"{script}\" 실행을 실패하였습니다.", "timeout": "스크립트 \"{script}\" 실행 시간을 초과하였습니다.", "ksu_not_available": "KernelSU 실행 API를 사용할 수 없습니다.", "status_online": "상태: 온라인", "status_offline": "상태: 오프라인", "home_refresh_failed": "정보 새로고침 실패!", "home_no_internet": "인터넷에 연결되어 있지 않습니다.", "home_connected": "연결됨", "home_disconnected": "연결 끊김", "settings_appearance": "테마", "settings_clock_format": "시간 형식", "clock_format_auto": "자동 (디바이스)", "clock_format_24h": "24시간 (00:00)", "clock_format_12h": "12시간 (AM/PM)", "theme_mode_dark": "다크", "theme_mode_light": "라이트", "theme_mode_auto": "자동 (시스탬)", "theme_preset_ocean": "바다", "theme_preset_rose": "장미", "theme_preset_forest": "숲", "theme_preset_sunset": "일몰", "theme_preset_violet": "바이올렛", "settings_title": "설정", "settings_language": "언어", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "RKA 구성 업데이트", "advance_widevinel1": "Widevine L1 수정", "nav_advance_menu": "메뉴 +", "advance_set_zygisk_next_configs": "Zygisk Next 구성 설정" } ================================================ FILE: Module/webroot/lang/nl.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/no.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/pl.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/pt.json ================================================ { "nav_home": "Início", "nav_menu": "Menu", "nav_update": "Atualizar", "nav_settings": "Configurações", "home_version": "Versão do módulo", "home_root": "Implementação do Root", "home_refresh": "Atualizar informações", "home_refreshing": "Atualizando...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Dia", "home_clock_time": "Hora", "menu_title": "MENU PRINCIPAL", "menu_force_clear": "Forçar Parar & Limpar Dados da Play Store", "menu_keybox": "Configurar Yuri Keybox", "menu_target": "Configurar Target.txt", "menu_necessary": "Configurar Apenas Aplicativos Necessários ", "menu_patch": "Configurar Security Patch", "advance_menu_title": "Menu Avançado", "advance_clear_all_detection_traces": "Limpar todos os rastros de detecção", "advance_set_hma-oss_configs": "Definir configurações de HMA-oss", "advance_fix_detect_lsposed": "Corrigir Detecção do lsposed (2)", "advance_fix_detect_pif": "Corrigir Detecção do PIF (1)", "advance_fix_detect_recovery_file": "Corrigir Detecção do Arquivo de Recuperação ", "advance_kill_all": "Matar todos os processos", "advance_set_verified_boot": "Configurar Verified Boothash", "update_title": "ATUALIZAÇÃO & SUPORTE", "update_desc": "Mantenha-se atualizado com a última versão de Yurikey, correções de bugs e novos recursos.", "update_github": "Ver no GitHub", "update_telegram": "Entre no canal do Telegram", "update_note": "Entre no nosso canal do Telegram ou confira no GitHub por atualizações, contribuições e discussões técnicas.", "settings_contributors": "Colaboradores do Projeto", "role_Founder & Module Developer": "Fundador e Desenvolvedor do Módulo", "role_Module Developer": "Desenvolvedor do Módulo", "role_WebUI Developer": "Desenvolvedor do WebUI", "role_Ex Module Developer": "Antigo Desenvolvedor do Módulo", "executing": "Executando \"{script}\"...", "success": "Script \"{script}\" executado com sucesso.", "failed": "Falha ao executar o script \"{script}\".", "timeout": "Script \"{script}\" tempo esgotado.", "ksu_not_available": "API KernelSU exec não está disponível.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Falha ao atualizar informações!", "home_no_internet": "Sem conexão à internet.", "home_connected": "Conectado", "home_disconnected": "Desconectado", "settings_appearance": "Aparência", "settings_clock_format": "Formato do relógio", "clock_format_auto": "Automático (Dispositivo)", "clock_format_24h": "24 horas (00:00)", "clock_format_12h": "12 horas (AM/PM)", "theme_mode_dark": "Escuro", "theme_mode_light": "Claro", "theme_mode_auto": "Automático (Sistema)", "theme_preset_ocean": "Oceano", "theme_preset_rose": "Rose", "theme_preset_forest": "Floresta", "theme_preset_sunset": "Pôr do Sol", "theme_preset_violet": "Violeta", "settings_title": "Configurações", "settings_language": "Linguagem", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Atualizar configuração do RKA", "advance_widevinel1": "Corrigir Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/ro.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/ru.json ================================================ { "nav_home": "Главная", "nav_menu": "Меню", "nav_update": "Обновление", "nav_settings": "Настройки", "home_version": "Версия модуля", "home_root": "Рут реализация", "home_refresh": "Обновить информацию", "home_refreshing": "Обновление...", "home_status": "Статус", "home_status_online": "Онлайн", "home_status_offline": "Офлайн", "home_clock_date": "Дата часов", "home_clock_time": "Время на часах", "menu_title": "ГЛАВНОЕ МЕНЮ", "menu_force_clear": "Принудительная остановка и очистка данных Play Store", "menu_keybox": "Установить Yuri Keybox", "menu_target": "Установить Target.txt", "menu_necessary": "Установить только необходимые приложения", "menu_patch": "Установить патч безопасности", "advance_menu_title": "Расширенное Меню", "advance_clear_all_detection_traces": "Очистить все следы обнаружения", "advance_set_hma-oss_configs": "Настройка параметров HMA-oss", "advance_fix_detect_lsposed": "Исправить обнаружение lsposed (2)", "advance_fix_detect_pif": "Исправить обнаружение PIF (1)", "advance_fix_detect_recovery_file": "Исправить обнаружение файла восстановления", "advance_kill_all": "Отключить все процессы", "advance_set_verified_boot": "Настроить проверенный Boothash", "update_title": "ОБНОВЛЕНИЯ И ПОДДЕРЖКА", "update_desc": "Будьте в курсе последних обновлений Yurikey, исправлений ошибок и новых функций.", "update_github": "Посмотреть на GitHub", "update_telegram": "Присоединяйтесь к Telegram каналу", "update_note": "Присоединяйтесь к нашему Telegram каналу или следите за обновлениями, предложениями по улучшению и техническими обсуждениями на GitHub.", "settings_contributors": "Участники проекта", "role_Founder & Module Developer": "Основатель и разработчик модуля", "role_Module Developer": "Разработчик модуля", "role_WebUI Developer": "Разработчик веб-интерфейса", "role_Ex Module Developer": "Бывший разработчик модулей", "executing": "Выполнение \"{script}\"...", "success": "Скрипт \"{script}\" выполнен успешно.", "failed": "Не удалось выполнить скрипт \"{script}\".", "timeout": "Скрипт \"{script}\" завершился по истечении времени ожидания.", "ksu_not_available": "API KernelSU exec недоступен.", "status_online": "Статус: Онлайн", "status_offline": "Статус: Офлайн", "home_refresh_failed": "Не удалось обновить информацию!", "home_no_internet": "Не удалось подключиться к интернету.", "home_connected": "Соединено", "home_disconnected": "Отключено", "settings_appearance": "Внешний вид", "settings_clock_format": "Формат часов", "clock_format_auto": "Авто (Устройство)", "clock_format_24h": "24-часовой (00:00)", "clock_format_12h": "12-часовой (AM/PM)", "theme_mode_dark": "Тёмный", "theme_mode_light": "Светлый", "theme_mode_auto": "Авто (Системно)", "theme_preset_ocean": "Океан", "theme_preset_rose": "Роза", "theme_preset_forest": "Лес", "theme_preset_sunset": "Закат", "theme_preset_violet": "Фиолетовый", "settings_title": "Настройки", "settings_language": "Язык", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Обновить конфигурацию RKA", "advance_widevinel1": "Исправить Widevine L1", "nav_advance_menu": "Меню +", "advance_set_zygisk_next_configs": "Настройка параметров Zygisk Next" } ================================================ FILE: Module/webroot/lang/sr.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/sv.json ================================================ { "nav_home": "Home", "nav_menu": "Menu", "nav_update": "Update", "nav_settings": "Settings", "home_version": "Module Version", "home_root": "Root Implementation", "home_refresh": "Refresh Info", "home_refreshing": "Refreshing...", "home_status": "Status", "home_status_online": "Online", "home_status_offline": "Offline", "home_clock_date": "Clock Date", "home_clock_time": "Clock Time", "menu_title": "MAIN MENU", "menu_force_clear": "Force Stop & Clear Data Play Store", "menu_keybox": "Set Up Yuri Keybox", "menu_target": "Set Up Target.txt", "menu_necessary": "Only Set Necessary App", "menu_patch": "Set Up Security Patch", "advance_menu_title": "Advanced Menu", "advance_clear_all_detection_traces": "Clear all detection traces", "advance_set_hma-oss_configs": "Set HMA-oss configs", "advance_fix_detect_lsposed": "Fix Detect lsposed (2)", "advance_fix_detect_pif": "Fix Detect PIF (1)", "advance_fix_detect_recovery_file": "Fix Detect Recovery File", "advance_kill_all": "Kill All Process", "advance_set_verified_boot": "Set Up Verified Boothash", "update_title": "UPDATE & SUPPORT", "update_desc": "Stay up to date with the latest version of Yurikey, bug fixes, and new features.", "update_github": "View on GitHub", "update_telegram": "Join Telegram Channel", "update_note": "Join our Telegram channel or check GitHub for updates, contributions, and technical discussions.", "settings_contributors": "Project Contributors", "role_Founder & Module Developer": "Founder & Module Developer", "role_Module Developer": "Module Developer", "role_WebUI Developer": "WebUI Developer", "role_Ex Module Developer": "Former Module Developer", "executing": "Executing \"{script}\"...", "success": "Script \"{script}\" executed successfully.", "failed": "Failed to execute script \"{script}\".", "timeout": "Script \"{script}\" timed out.", "ksu_not_available": "KernelSU exec API not available.", "status_online": "Status: Online", "status_offline": "Status: Offline", "home_refresh_failed": "Failed to refresh info!", "home_no_internet": "No internet connection.", "home_connected": "Connected", "home_disconnected": "Disconnected", "settings_appearance": "Appearance", "settings_clock_format": "Clock Format", "clock_format_auto": "Auto (Device)", "clock_format_24h": "24-hour (00:00)", "clock_format_12h": "12-hour (AM/PM)", "theme_mode_dark": "Dark", "theme_mode_light": "Light", "theme_mode_auto": "Auto (System)", "theme_preset_ocean": "Ocean", "theme_preset_rose": "Rose", "theme_preset_forest": "Forest", "theme_preset_sunset": "Sunset", "theme_preset_violet": "Violet", "settings_title": "Settings", "settings_language": "Language", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Update RKA config", "advance_widevinel1": "Fix Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Set Zygisk Next configs" } ================================================ FILE: Module/webroot/lang/tr.json ================================================ { "nav_home": "Ana Sayfa", "nav_menu": "Menü", "nav_update": "Güncelle", "nav_settings": "Ayarlar", "home_version": "Modül Sürümü", "home_root": "root Temelli Uygulama Biçimi", "home_refresh": "Bilgileri Yenile", "home_refreshing": "Yenileniyor...", "home_status": "Durum", "home_status_online": "Çevrimiçi", "home_status_offline": "Çevrimdışı", "home_clock_date": "Tarih", "home_clock_time": "Saat", "menu_title": "Ana Menü", "menu_force_clear": "Google Play Store'u Durdurmaya Zorla ve Verileri Temizle", "menu_keybox": "Yuri Keybox Kur", "menu_target": "Target.txt Ayarla", "menu_necessary": "Sadece önerilen uygulamaları ayarlayın", "menu_patch": "Güvenlik Yamasını Uygula", "advance_menu_title": "Gelişmiş Menü", "advance_clear_all_detection_traces": "Tüm tespit izlerini temizle", "advance_set_hma-oss_configs": "HMA-oss yapılandırmalarını ayarla", "advance_fix_detect_lsposed": "lsposed Tespitini Düzelt (2)", "advance_fix_detect_pif": "PIF Tespitini Düzelt (1)", "advance_fix_detect_recovery_file": "Recovery Dosyası Tespitini Düzelt", "advance_kill_all": "Tüm İşlemleri Sonlandır", "advance_set_verified_boot": "Doğrulanmış Boothash Ayarla", "update_title": "GÜNCELLEME & DESTEK", "update_desc": "Yurikey'in en son sürümü, hata düzeltmeleri ve yeni özelliklerle güncel kal.", "update_github": "GitHub'da Görüntüle", "update_telegram": "Telegram Kanalına Katıl", "update_note": "Güncellemeler, katkılar ve teknik tartışmalar için Telegram kanalımıza katılabilir veya GitHub'ı kontrol edebilirsin.", "settings_contributors": "Proje Katkıcıları", "role_Founder & Module Developer": "Kurucu & Modül Geliştirici", "role_Module Developer": "Modül Geliştiricisi", "role_WebUI Developer": "Web Arayüzü geliştiricisi", "role_Ex Module Developer": "Eski Modül Geliştirici", "executing": "\"{script}\" çalıştırılıyor...", "success": "\"{script}\" başarıyla çalıştırıldı.", "failed": "\"{script}\" çalıştırılamadı(Hata verdi).", "timeout": "\"{script}\" zaman aşımına uğradı.", "ksu_not_available": "KernelSU exec API mevcut değil.", "status_online": "Durum: Çevrimiçi", "status_offline": "Durum: Çevrimdışı", "home_refresh_failed": "Bilgiler yenilenemedi.", "home_no_internet": "İnternet bağlantısı yok.", "home_connected": "Bağlandı", "home_disconnected": "Bağlantı kesildi", "settings_appearance": "Kişiselleştirme", "settings_clock_format": "Saat biçimi", "clock_format_auto": "Otomatik ayarla", "clock_format_24h": "24-Saat(00:00)", "clock_format_12h": "12-Saat(ÖÖ/ÖS)", "theme_mode_dark": "Koyu", "theme_mode_light": "Açık", "theme_mode_auto": "Otomatik(sistem)", "theme_preset_ocean": "Okyanus", "theme_preset_rose": "Gül Rengi", "theme_preset_forest": "Orman", "theme_preset_sunset": "Günbatımı", "theme_preset_violet": "Menekşe", "settings_title": "Ayarlar", "settings_language": "Dil", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "RKA ayarını güncelle", "advance_widevinel1": "Widevine L1 Düzelt", "nav_advance_menu": "Menü+", "advance_set_zygisk_next_configs": "Zygisk-Next Ayarlarını ayarla" } ================================================ FILE: Module/webroot/lang/uk.json ================================================ { "nav_home": "Головна", "nav_menu": "Меню", "nav_update": "Оновлення", "nav_settings": "Налаштування", "home_version": "Версія Модуля", "home_root": "Рут реалізація", "home_refresh": "Оновити інформацію", "home_refreshing": "Оновлення...", "home_status": "Статус", "home_status_online": "Онлайн", "home_status_offline": "Офлайн", "home_clock_date": "Дата", "home_clock_time": "Час", "menu_title": "ГОЛОВНЕ МЕНЮ", "menu_force_clear": "Примусова зупинка та очищення даних Play Store", "menu_keybox": "Встановити keybox від Yuri", "menu_target": "Встановити Target.txt", "menu_necessary": "Встановити лише необхідні програми", "menu_patch": "Встановити патч безпеки", "advance_menu_title": "Розширене Меню", "advance_clear_all_detection_traces": "Очистити всі сліди виявлення", "advance_set_hma-oss_configs": "Встановити конфігурацію HMA-oss", "advance_fix_detect_lsposed": "Виправити виявлення Isposed (2)", "advance_fix_detect_pif": "Виправити виявлення PIF (1)", "advance_fix_detect_recovery_file": "Виправити виявлення файлу відновлення", "advance_kill_all": "Завершити всі процеси", "advance_set_verified_boot": "Встановити перевірений Boothash", "update_title": "ОНОВЛЕННЯ ТА ПІДТРИМКА", "update_desc": "Будьте в курсі останньої версії Yurikey, виправлень помилок та нових функцій.", "update_github": "Переглянути на GitHub", "update_telegram": "Приєднатися до Telegram каналу", "update_note": "Приєднуйтесь до нашого Telegram каналу або перевіряйте GitHub для оновлень, внесків та технічних обговорень.", "settings_contributors": "Учасники проєкту", "role_Founder & Module Developer": "Засновник та Розробник Модулю", "role_Module Developer": "Розробник Модулю", "role_WebUI Developer": "Розробник вебінтерфейсу", "role_Ex Module Developer": "Колишній розробник модулю", "executing": "Виконання \"{script}\"...", "success": "Скрипт \"{script}\" виконано успішно.", "failed": "Не вдалося виконати скрипт \"{script}\".", "timeout": "Скрипт \"{script}\" перевищив час очікування.", "ksu_not_available": "API виконання KernelSU недоступний.", "status_online": "Статус: Онлайн", "status_offline": "Статус: Офлайн", "home_refresh_failed": "Не вдалося оновити інформацію!", "home_no_internet": "Немає підключення до інтернету.", "home_connected": "З'єднано", "home_disconnected": "Від'єднано", "settings_appearance": "Зовнішній вигляд", "settings_clock_format": "Формат годинника", "clock_format_auto": "Авто (Пристрій)", "clock_format_24h": "24-годинний (00:00)", "clock_format_12h": "12-годинний (AM/PM)", "theme_mode_dark": "Темний", "theme_mode_light": "Світлий", "theme_mode_auto": "Авто (Системно)", "theme_preset_ocean": "Океан", "theme_preset_rose": "Роза", "theme_preset_forest": "Ліс", "theme_preset_sunset": "Захід сонця", "theme_preset_violet": "Фіолетовий", "settings_title": "Налаштування", "settings_language": "Мова", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Оновити конфігурацію RKA", "advance_widevinel1": "Виправити Widevine L1", "nav_advance_menu": "Меню +", "advance_set_zygisk_next_configs": "Встановлення конфігурацій Zygisk Next" } ================================================ FILE: Module/webroot/lang/vi.json ================================================ { "nav_home": "Trang chủ", "nav_menu": "Menu", "nav_update": "Cập nhật", "nav_settings": "Cài đặt", "home_version": "Phiên Bản Mô-Đun", "home_root": "Phần mềm Root", "home_refresh": "Làm mới thông tin", "home_refreshing": "Đang làm mới...", "home_status": "Trạng thái", "home_status_online": "Trực tuyến", "home_status_offline": "Ngoại Tuyến", "home_clock_date": "Ngày", "home_clock_time": "Thời gian", "menu_title": "TRANG CHỦ", "menu_force_clear": "Buộc dừng & Xóa dữ liệu Play Store", "menu_keybox": "Cài đặt Yuri keybox", "menu_target": "Cài đặt Target.txt", "menu_necessary": "Chỉ chọn các phần mềm cần thiết", "menu_patch": "Cài đặt bản vá bảo mật", "advance_menu_title": "Menu nâng cao", "advance_clear_all_detection_traces": "Xóa tất cả các dấu vết", "advance_set_hma-oss_configs": "Cài đặt", "advance_fix_detect_lsposed": "Sửa lỗi phát hiện lsposed (2)", "advance_fix_detect_pif": "Sửa lỗi phát hiện PIF (1)", "advance_fix_detect_recovery_file": "Sửa lỗi phát hiện File Recovery", "advance_kill_all": "Xóa tất cả các tiến trình", "advance_set_verified_boot": "Cài đặt Boothash được xác minh", "update_title": "CẬP NHẬT & HỖ TRỢ", "update_desc": "Cập nhật phiên bản Yurikey mới nhất, sửa lỗi, và những tính năng mới.", "update_github": "Xem trên GitHub", "update_telegram": "Tham gia nhóm Telegram", "update_note": "Tham gia nhóm Telegram của chúng tôi hoặc xem qua GitHub để cập nhật, đóng góp, và thảo luận về vấn đề kí thuật.", "settings_contributors": "Những người đóng góp và dự án", "role_Founder & Module Developer": "Nhà sáng lập & Phát triển mô-đun", "role_Module Developer": "Nhà phát triển mô-đun", "role_WebUI Developer": "Nhà phát triển WebUI", "role_Ex Module Developer": "Đồng nhà sáng lập", "executing": "Chạy \"{script}\"", "success": "Lệnh \"{script}\" được chạy thành công", "failed": "Chạy lệnh \"{script}\" thất bại", "timeout": "Hết thời gian chờ lệnh \"{script}\"", "ksu_not_available": "API của KernelSU exec không thấy", "status_online": "Trạng thái: Trực tuyến", "status_offline": "Trạng thái: Ngoại tuyến", "home_refresh_failed": "Làm mới thông tin thất bại!", "home_no_internet": "Không có kết nối Internet.", "home_connected": "Đã kết nối", "home_disconnected": "Ngắt kết nối", "settings_appearance": "Giao diện", "settings_clock_format": "Định dạng đồng hồ", "clock_format_auto": "Tự động (Theo thiết bị)", "clock_format_24h": "24 giờ (00:00)", "clock_format_12h": "12 giờ (Sáng/Chiều)", "theme_mode_dark": "Tối", "theme_mode_light": "Sáng", "theme_mode_auto": "Tự động (Theo hệ thống)", "theme_preset_ocean": "Biển", "theme_preset_rose": "Hoa Hồng", "theme_preset_forest": "Rừng", "theme_preset_sunset": "Mặt Trời lặn", "theme_preset_violet": "Tím", "settings_title": "Cài đặt", "settings_language": "Ngôn ngữ", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "Cập nhật cấu hình RKA", "advance_widevinel1": "Sửa Widevine L1", "nav_advance_menu": "Menu +", "advance_set_zygisk_next_configs": "Thiết lập cấu hình Zygisk Next" } ================================================ FILE: Module/webroot/lang/zh.json ================================================ { "nav_home": "主页", "nav_menu": "菜单", "nav_update": "更新", "nav_settings": "设置", "home_version": "模块版本", "home_root": "Root 实现", "home_refresh": "刷新信息", "home_refreshing": "刷新中...", "home_status": "状态", "home_status_online": "在线", "home_status_offline": "离线", "home_clock_date": "时钟日期", "home_clock_time": "时钟时间", "menu_title": "主菜单", "menu_force_clear": "强制停止 Google Play Store 并清除数据", "menu_keybox": "设置 Yuri Keybox", "menu_target": "设置 Target.txt", "menu_necessary": "仅选择必要应用", "menu_patch": "设置安全补丁", "advance_menu_title": "高级菜单", "advance_clear_all_detection_traces": "清除所有检测痕迹", "advance_set_hma-oss_configs": "更新 HMA-oss 配置", "advance_fix_detect_lsposed": "修复 Detect lsposed (2)", "advance_fix_detect_pif": "修复 Detect PIF (1)", "advance_fix_detect_recovery_file": "修复检测到恢复文件", "advance_kill_all": "终止全部进程", "advance_set_verified_boot": "设置哈希值", "update_title": "更新 & 支持", "update_desc": "随时了解 Yurikey 的最新版本、错误修复以及新增功能。", "update_github": "在 GitHub 上查看", "update_telegram": "加入 Telegram 频道", "update_note": "加入我们的 Telegram 频道或者查看 GitHub 以获取最新更新、贡献清单和技术讨论。", "settings_contributors": "项目贡献者", "role_Founder & Module Developer": "创始人 & 模块开发者", "role_Module Developer": "模块开发者", "role_WebUI Developer": "WebUI 开发者", "role_Ex Module Developer": "前模块开发者", "executing": "执行 \"{script}\" 中...", "success": "脚本 \"{script}\" 已成功执行。", "failed": "执行脚本 \"{script}\" 时发生错误。", "timeout": "脚本 \"{script}\" 执行超时。", "ksu_not_available": "KernelSU exec API 不可用。", "status_online": "状态: 在线", "status_offline": "状态: 离线", "home_refresh_failed": "无法刷新信息!", "home_no_internet": "无网络连接。", "home_connected": "已连接", "home_disconnected": "断开连接", "settings_appearance": "外观", "settings_clock_format": "时钟格式", "clock_format_auto": "自动 (跟随设备)", "clock_format_24h": "24小时制 (00:00)", "clock_format_12h": "12小时制 (AM/PM)", "theme_mode_dark": "暗色模式", "theme_mode_light": "亮色模式", "theme_mode_auto": "自动 (跟随系统)", "theme_preset_ocean": "海洋蓝", "theme_preset_rose": "玫瑰红", "theme_preset_forest": "森林绿", "theme_preset_sunset": "日光橙", "theme_preset_violet": "菫菜紫", "settings_title": "设置", "settings_language": "语言", "menu_keybox_title": "Keybox", "advance_upd_yurirka": "更新 RKA 配置", "advance_widevinel1": "修复 Widevine L1", "nav_advance_menu": "菜单 +", "advance_set_zygisk_next_configs": "设置 Zygisk Next 配置" } ================================================ FILE: README.md ================================================ # YuriKey ![Artifacts](./doc/banner.webp) [![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/yuriiroot) [![latest release](https://img.shields.io/github/v/release/Yurii0307/yurikey?label=Release&logo=github)](https://github.com/Yurii0307/yurikey/releases/latest) [![CI](https://img.shields.io/github/actions/workflow/status/Yurii0307/yurikey/build-test.yml?label=Build%20Test%20Module)](https://github.com/Yurii0307/yurikey/actions/workflows/build-test.yml) ![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/Yurii0307/yurikey/total) [![Crowdin](https://badges.crowdin.net/yurikey/localized.svg)](https://crowdin.com/project/yurikey) **Language:** [ja-JP/日本語](./doc/README_ja-JP.md) A Systemless Module to get Strong Integrity so Easily [Crowdin](https://crwd.in/yurikey/16ffbcb2d7926491c764b48a99bc06c52742324) [Download](https://github.com/Yurii0307/yurikey/releases/latest) [Changelog](https://raw.githubusercontent.com/Yurii0307/yurikey/main/changelog.md) Join Group/Channel Telegram: https://t.me/yuriiroot https://t.me/yurichattt https://t.me/yuriiarchives https://t.me/yurikernel ## How to get Strong Integrity ? - Install module [Play Integrity Inject](https://github.com/KOWX712/PlayIntegrityFix/releases/latest) or [Play Integrity Fork](https://github.com/osm0sis/PlayIntegrityFork/releases/latest) - Install module [Tricky Store](https://github.com/5ec1cff/TrickyStore/releases/latest) - Install module [Yurikey Manager](https://github.com/Yurii0307/yurikey/releases/latest) by your root manager (Magisk/Apatch/KernelSu/Fork of KernelSU) - Press the action button ## ⚠️Attention > [!NOTE] > > If you get errors similar to the ones below in action.sh or in module installations, you may need to install the modules below them. > > For the error on the side > > `ERROR: Tricky Store module not found!`: > [Tricky Store](https://github.com/5ec1cff/TrickyStore/releases/latest) > > For the error on the side > > `ERROR: Keybox updated failed!`: > [BusyBox](https://mmrl.dev/repository/grdoglgmr/busybox-ndk) ## Contributors [Yuri](https://github.com/Yurii0307) [Tam](https://github.com/Tam97123) [yourbestregard](https://github.com/yourbestregard) [cvnertnc](https://github.com/cvnertnc) [ZG089](https://github.com/ZG089) [Munch](https://github.com/SudoNothing404) [Wes](https://github.com/ihatenodejs) [Khx](https://github.com/dpejoh) ================================================ FILE: changelog.md ================================================ ***✨ v3.0.5 – Version Changes:*** -> perf(pif): Enhance pif detection -> Update language string -> Various performance improvement → [All changes](https://github.com/YurikeyDev/yurikey/compare/v3.0.4...main). ================================================ FILE: config.json ================================================ {"configVersion":93,"detailLog":false,"errorOnlyLog":false,"maxLogSize":256,"forceMountData":true,"disableActivityLaunchProtection":false,"altAppDataIsolation":true,"altVoldAppDataIsolation":false,"skipSystemAppDataIsolation":true,"packageQueryWorkaround":false,"templates":{"HIDE MY CUSTOM APP":{"isWhitelist":false,"appList":["com.zhenxi.hunter","com.byxiaorun.detector","io.github.lsposed.disableflagsecure","io.github.vvb2060.mahoshojo","io.liankong.riskdetector","io.github.rabehx.securify","com.thend.integritychecker","bin.mt.plus.canary","com.android.nativetest","icu.nullptr.nativetest","com.coderstory.toolkit","com.sukisu.ultra","com.tencent.docs","me.garfieldhan.holmes","com.github.capntrips.kernelflasher","com.reveny.nativecheck","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","com.my.televip","io.github.vvb2060.keyattestation","com.henrikherzig.playintegritychecker","krypton.tbsafetychecker","com.youhu.laifu","com.tsng.applistdetector","com.kikyps.crackme","com.jc","io.github.a13e300.ksuwebui","io.github.huskydg.memorydetector","com.godevelopers.OprekCek","id.my.pjm.qbcd_okr_dvii","luna.safe.luna","me.yuri.ok","icu.nullptr.nativetext","com.tsng.hidemyapplist","com.zrt.xposed","xzr.hkf","com.android.shell","com.dergoogler.mmrl","com.dergoogler.mmrl.wx","com.aurora.store.nightly","io.github.vvb2060.magisk","com.luckyzyx.luckytool","com.topjohnwu.magisk","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","icu.nullptr.applistdetector","com.omarea.vtools","bin.mt.plus","me.weishu.kernelsu","gvbtcl.yubbjm.qajtjy","tsfvdj.xiwtkz.wuhyrv","com.android.kernel","com.rem01gaming.disclosure","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.termux","com.thor.nonroot","top.ltfan.notdeveloper","ru.zdevs.zarchiver","com.modaov.unlock60fps","org.matrix.demo","com.aorus.extr","com.rcmiku.payload.dumper.compose","wu.Zygisk.Detector","com.suqi8.oshin","com.owopdopkmd.wzarcdtfv","com.abc.abc","com.gearup.booster","com.cn.MaxCheatGL","com.community.oneroom","com.movieshubinpire.android","app.netmirror.netmirrornew","com.jrzheng.supervpnfree","org.telegram.messenger.web","com.mx.thorcheat","org.telegram.messenger","com.gmail.heagoo.apkeditor.pro","com.apkpure.aegon","com.adguard.android","com.twofasapp","me.yourbay.airfrozen","com.onesports.score","com.apowersoft.mirror","com.applisto.appcloner","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","com.py.cloneapp.huawei","com.fitifyworkouts.bodyweight.workoutapp","eu.livesport.FlashScore_com","idm.internet.download.manager.plus","org.lsposed.manager","com.mbcp.helper","eu.thedarken.sdm.unlocker","p.gfgxk.dn","com.aorus.arbr","com.expressvpn.vpn","com.huawo.hawofit","popup.toast","com.scottyab.rootbeer.sample","org.telegram.plus","tw.nekomimi.nekogram","org.circleai","com.meowna.keybox","io.github.vvb2060.extractor","tk.yunus.hexeditor","com.meowna","com.twitter.android","com.abdurazaaqmohammed.AntiSplit","flar2.devcheck","bin.mt.termex","i.qlm","com.dexprotector.detector.envchecks","me.itejo443.bindhosts","com.android.preconditions.cts","com.studio.duckdetector","secure.unblock.unlimited.proxy.snap.hotspot.shield","kiwivpn.connectip.ipchanger.unblocksites","me.bmax.apatch","com.tempmail","com.houvven.oplusupdater","com.c.cn","tq.tech.Fpsfree","com.aide.ui","com.idragoncheats.studiopro","com.sand.remotesupportaddon","com.apkcombo.app","top.niunaijun.blackdexa64","gg.now.billing.service2","com.n0n3m4.droidc","com.catsmoker.app","kentos.loader","sami.pro.keyboard.free","com.discord","com.amanyt.tool","flix.com.vision","com.n0n3m4.gcc4droid","me.garfieldhan.attestation","com.happymod.apk","hd.camera","com.myprog.hexedit","com.t2.AvailoHader","cc.honista.app","net.maxters.droid.playi","io.github.a13e300.tricky_store","com.lizardCheatsBGMI","com.lagofast.mobile.acclerater","com.nexstreaming.app.kinemasterfree","com.redfoxpro.iqcars","com.mapswithme.maps.pro","com.mf.file","A.jie.recordscreen","com.bizi.kernel","com.mt.isl.mpos.android.zainirq","com.matrixhax.myapplication","sa.gov.nic.myid","me.ninjagram.messenger","com.noping.gaming.vpn","com.nr.app","iq.oodi.com","com.osn.go","com.lbe.parallel.intl","com.sand.airdroidkidp","com.linux.permissionmanager","inc.trilokia.pubgfxtool.free","inc.trilokia.pubgfxtool","com.deveem.private.browser","com.mycompany.myapp","com.android.vending.billing.InAppBillingService.BINN","com.foxylab.airfox","com.flinkapps.safteynet","wu.Rookie.Detector","com.carriez.flutter_hbb","cnjkkx.usrmav.elfwth","co.solovpn","com.sigma_rt.tcg","com.teamviewer.quicksupport.addon.universal","com.zoogvpn.android","com.PUBGDCL.kernel","com.BYemil","com.factum.nonpenitet","com.tencent.igce","themeworld.zte.nubia.red.magic8.magic9.ztenubiaredmagic8walls.launcher.theme","video.player.videoplayer","com.xe.currency","com.changpeng.instafilter","com.android.kpro","app.jumpjumpvpn.jumpjumpvpn","com.kbzbank.kpaycustomer","com.netflix.NGP.Kamo","com.facepunch.rust.companion","nchiyc.mpbmou.dionhs","com.x.wolfxradar","cuuca.sendfiles.Activity","com.handmark.expressweather","com.cybercat.acbridge","org.adblockplus.adblockplussbrowser","de.szalkowski.activitylauncher","com.anu.developers3k.rootchecker","com.htetznaing.adbotg","org.adaway","com.sec.android.app.sbrowser.webapk.w5bf26fddbe250ca726aa0479178923c91","com.example.androidzonews","dev.dworks.apps.anexplorer.free","dev.dworks.apps.anexplorer.pro","com.apk.editor","com.proapk.apk.installer","com.apkgetter","com.lb.app_manager","io.github.muntashirakon.AppManager","rk.android.app.appbar","com.apkmirror.helper.prod","com.a0soft.gphone.app2sd.pro","com.valhalla.bolt","eu.sisik.hackendebug","eu.sisik.hackendebug.full","com.lemon.lvoverseas","com.vishtekstudios.deviceinfo","org.aospstudio.devoptions","jp.co.bii.android.app.dskvzr","com.domka.theme.iconpack","com.sweetappproivders.setdpi","ru.niqhhfkq.iloqdyaeh","com.chornerman.easydpichanger","org.fdroid.fdroid","com.rom2box.fw_manager","com.flightradar24free","com.natewren.flight","com.samsung.android.heartplugin","com.samsung.android.app.watchmanager","com.androradar.livewallsg2","com.androradar.livewallsg3","com.androradar.livewallsg4","com.androradar.livewallsg9","com.androradar.livewallsg5","com.androradar.livewallsg6","com.androradar.livewallsg7","com.androradar.livewallsg8","com.androradar.livewallsg10","com.androradar.livewallsg16","com.pixsterstudio.gifmaker_editor_photo_gif_video","video.to.gif.maker","com.bk.videotogif","com.mike.gifmaker","gifmaker.gifcreator.gifeditor","com.monotype.android.font.kapp.custom_1714429462","com.csdeveloper.imgconverterpro","ru.tech.imageresizershrinker","com.spaceship.screen.textcopy","com.akbon.ios","cn.sealili.icons","co.livesatelliteview","com.screensavers_store.matrixlivewallpaper","mega.privacy.android.app","com.vpnbottle.melon.free.unblock.fast.vpn","com.mixplorer","com.mixplorer.beta","ru.gavrikov.mocklocations","com.hrd.motivation","com.motorola.wallpaper.parallaa","com.mxtech.videoplayer.ae","com.mxtech.videoplayer.pro","com.andatsoft.myapk.fwa","com.machiav3lli.fdroid","com.livewallpaper.opace5proBlack","ostrsf.ijmoeu.uircnu","in.pyshivam.clearappdata","com.ytheekshana.deviceinfo","ru.andr7e.deviceinfohw","com.fantasytat.det","me.yuki.folk","com.jazibkhan.equalizer","ropl.momo.item","me.neko.fckvip","com.secure.unblock.unlimited.proxy.vpnuk","free.vpnindia.unlimited.fast.secure.proxy.turbo","at.austriao.fake_gps_detector_app","com.fkjc.zcro","io.github.jqssun.gpssetter","ydyqb.kfqdjcxrr.b.s","com.android.lc","com.lizardCheats","com.accarunit.motionvideoeditor","app.greyshirts.firewall","yqheks.hcfaem.elmxyb","com.niksoftware.snapseed","dev.hexasoftware.v2box","com.resukisu.resukisu","io.ngankbakaa.lineage.detector","com.chuqniudetector","com.pyshivam.gplaylicense","io.github.a13e300.fusefixer","io.github.mhmrdd.libxposed.ps.passit","at.persie0.root_detection_app","dev.probe.roottest","wu.keyChain.test","org.akanework.checker","com.scheler.superproxy","com.mcdonalds.mobileapp","xuet.ahwmyctnhgbgf","org.thoughtcrime.securesms","com.dark.venom.injector","com.dark.venom.injectf","com.nordvpn.android","opqiox.jowjlg.bfttdz","com.fast.free.unblock.secure.vpn","com.mi.global.bbs","com.ziipin.softkeyboard.saudi","rgqvrb.cmoiar.mdwbwo","com.anydesk.adcontrol.ad1","tw.reh.deviceid","com.evernote","com.gsmcenter.imeiinfo","wu.futiletest","com.cpuid.cpu_z","god.of.gods","app.phantom","pwjnvc.rvktvb.mcfihj","fksncb.wm.yw","com.android1500.gpssetter","com.noobexon.xposedfakelocation","eu.faircode.xlua","com.github.thepiemonster.hidemocklocation","io.github.auag0.hidemocklocation","com.telegram.a1064","com.fingerprintjs.android.playground","com.fingerprintjs.android.fpjs_pro_demo","com.anatdx.yukisu","com.android1500.androidfaker","wbfl.eqon","net.typeblog.socks","znbzyu.xgvzep.uyfzma","oj.jglv.wblgy.cwzh","lcehic.cxkirx.puzvmy","com.yoyodan.kc","com.reveny.vbmetafix.service","uwmeok.izrwce.qoaluu","nwdexh.npjguz.jhrdbr","com.starvpn","sgdxnu.chhdye.kmveuy","com.m0dulePro.xinoShell","dev.sdex.idv2","j.crkh","dz.orzzsttlunbkj","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.sunilpaulmathew.debloater","com.silverlabtm.app.deviceidchanger.free","ru.otdr.deviceinfo","com.okirat.dnsmanager.pro","com.androidfung.drminfo","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.auag0.mocklocationdetector","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.machiav3lli.backup","me.hoshino.novpndetect","top.canyie.settingsfirewall","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","org.zwanoo.android.speedtest","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","com.defragd3m0n.uniqueizationofphone","com.jhc.detach","oks.x.o","com.estrongs.android.pop","pikjeftbrovsrvz.jyy","com.molink.john.hummingbird","com.xthax.dst","com.qosaw.suybcfrx.orpm","com.parallelc.micts","com.nstudio.mtoolkit","jxlaue.nibekc.fzixxz","com.detect.rooted.apps","com.rosan.installer.x.revived","com.freevpnplanet","rp.rkp","com.xver.app","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","io.github.nkr00711.xviphook","com.cq.detector","vzwhke.brxebg.gsvmdg","chunqiu.safe.detector","com.modelid","com.freyagxf","obb.apply.fix","com.ttdemon.fps.unlocker","cn.nubia.externdevice","com.evozi.injector","com.moonlandtech.pubgrenametool","com.netmod.syna","com.v2raytun.android","windcheat.skin.pro","com.pyshivam.geergit_device_id","com.mantle","vygrrm.vxqxph.rftzrh","com.wowsoftware.hidemyandroid","eqwzww.eouqoj.hjabjg","com.alaskaairlines.android","io.github.vvb2060.callrecording","com.greatbytes.fastrebootpro","app.revanced.android.gms","com.aoya.telegami","email.titan.app","com.newtoolsworks.tun2tap","com.v2ray.ang","com.mantle.cad","com.mantle.verify","xr.rwur.j","com.crabid","com.getcopper.copper","com.eltavine.duckdetector","com.draftkings.sportsbook","com.mr3h4n.driver_license_scanner","com.tenorshare.ianygo.fakegps","com.tenorshare.ianygo","com.oasisfeng.island","net.mullvad.mullvadvpn","com.mysteriumvpn.android","com.jrummyapps.rootchecker","com.koushikdutta.vysor","com.wuliang.xapkinstaller","pkuqpp.ozvqnq.wtmgxu","com.chunqiunativecheck","com.byedentity","com.coloros.deeptesting","com.yuuki.inject_detect","ch.protonvpn.android","paehnoo.qgba","com.XinoShell.m0dule","wputfi.fssouk.uvksus","com.mediatools.codec","ghvuumda.aqzks","hl.xcnbtflw","eiczkl.qyuuuo.kqwudj","io.suqi8.saned","hhavvf.nzryij.jvpqqg","org.frknkrc44.hma_oss","com.pyshivam.geergit","com.cloudflare.onedotonedotonedotone","qccknq.hdlfxy.elkfbb","com.aurora.store","org.mozilla.firefox","com.android.chrome","nuemwm.gtvqbd.npyvcd","com.anycheck.app","cm.aptoide.pt","com.example.boostx","uz.unnarsx.cherrygram","com.anthropic.claude","com.juanma0511.rootdetector.debug","kling.ai.video.chat","com.okinc.okex.gp","com.src.module","com.wallet.crypto.trustapp"]}},"settingsTemplates":{},"scope":{"com.shannon.rcsservice":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"icu.nullptr.applistdetector":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"krypton.tbsafetychecker":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"io.github.vvb2060.keyattestation":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.flar2.volumeskip":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.kotak811mobilebankingapp.instantsavingsupiscanandpayrecharge":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.zhenxi.hunter":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"io.github.huskydg.memorydetector":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.vnid":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid"],"extraOppositeAppList":[]},"com.sbi.lotusintouch":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"org.akanework.checker":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["xuet.ahwmyctnhgbgf","bin.mt.plus","org.frknkrc44.hma_oss","com.mcdonalds.mobileapp","com.android.shell","org.akanework.checker"],"extraOppositeAppList":[]},"com.engage.pbb.pbengage2my.release":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.tsng.hidemyapplist"],"extraOppositeAppList":[]},"com.dbs.dbspaylah":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["f.scxkxfbna"],"extraOppositeAppList":[]},"id.dana":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.ysh.hookapkverify":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.godevelopers.OprekCek":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.xiaoji.gamesirnsemulator":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.cimb.cimbocto":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.kotak.neo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.cookapps.heroassemble":{"useWhitelist":true,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.csam.icici.bank.imobile":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.bet365.authenticator":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"ph.com.bdo.retail":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"org.altruist.BajajExperia":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"me.garfieldhan.holmes":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"id.bmri.livin":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"id.co.bri.brimo":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.kvb.mobilebanking":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.tideplatform.banking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.vitaodoidao.vdinfos":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.ahmed.security_tester":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.fawry.myfawry":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.vnpay.vpbankonline":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.vakifbank.mobile":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.digilocker.android":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.xiaoji.xtouch.google":{"useWhitelist":true,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.bochk.bocpay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.emeint.android.myservices":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"luna.safe.luna":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["icu.nullptr.applistdetector","com.tsng.hidemyapplist","io.github.huskydg.memorydetector","com.thepedroo.meowdetector","com.reveny.nativecheck","com.byxiaorun.detector"],"extraOppositeAppList":[]},"com.ss.android.ugc.aweme":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.YONONPMobileApp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.YONOMVMobileApp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.garena.game.kgth":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.modaov.unlock60fps","com.cloudflare.onedotonedotonedotone","com.anydesk.anydeskandroid","com.android.preconditions.cts","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","io.github.vvb2060.keyattestation","com.luckyzyx.luckytool","bin.mt.plus.canary","com.reveny.nativecheck","icu.nullptr.nativetest","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","moe.shizuku.privileged.api","com.sukisu.ultra","com.free.vpn.india.proxy.planet","org.telegram.messenger","com.tsng.applistdetector","icu.nullptr.applistdetector","me.bmax.apatch","bin.mt.plus","org.circleai"],"extraOppositeAppList":[]},"com.shopee.vn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.netflix.mediaclient":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"net.one97.paytm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"ph.com.bdo.pay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.beeasy.toppay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.vnpay.ocean":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"vn.com.vng.zalopay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid"],"extraOppositeAppList":[]},"com.cc.grameenphone":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.vnpay.bidv":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.mipay.wallet":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.eg.android.AlipayGphone":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.vietinbank.ipay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.sina.weibo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"io.github.vvb2060.mahoshojo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"icu.nullptr.nativetest":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.binance.dev":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.openai.chatgpt":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.facebook.katana":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.vng.pubgmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.zhenxi.hunter","com.byxiaorun.detector","io.github.lsposed.disableflagsecure","io.github.vvb2060.mahoshojo","io.liankong.riskdetector","io.github.rabehx.securify","com.thend.integritychecker","bin.mt.plus.canary","com.android.nativetest","icu.nullptr.nativetest","com.coderstory.toolkit","com.sukisu.ultra","com.tencent.docs","me.garfieldhan.holmes","com.github.capntrips.kernelflasher","com.reveny.nativecheck","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","com.my.televip","io.github.vvb2060.keyattestation","com.henrikherzig.playintegritychecker","krypton.tbsafetychecker","com.youhu.laifu","com.tsng.applistdetector","com.kikyps.crackme","com.jc","io.github.a13e300.ksuwebui","io.github.huskydg.memorydetector","com.godevelopers.OprekCek","id.my.pjm.qbcd_okr_dvii","luna.safe.luna","me.yuri.ok","icu.nullptr.nativetext","com.tsng.hidemyapplist","com.zrt.xposed","xzr.hkf","com.android.shell","com.dergoogler.mmrl","com.dergoogler.mmrl.wx","com.aurora.store.nightly","io.github.vvb2060.magisk","com.luckyzyx.luckytool","com.topjohnwu.magisk","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","icu.nullptr.applistdetector","com.omarea.vtools","com.cloudflare.onedotonedotonedotone","bin.mt.plus","me.weishu.kernelsu","gvbtcl.yubbjm.qajtjy","tsfvdj.xiwtkz.wuhyrv","com.android.kernel","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.termux","com.thor.nonroot","com.pyshivam.geergit","top.ltfan.notdeveloper","ru.zdevs.zarchiver","com.modaov.unlock60fps","org.matrix.demo","com.aorus.extr","com.rcmiku.payload.dumper.compose","wu.Zygisk.Detector","com.suqi8.oshin","com.owopdopkmd.wzarcdtfv","com.abc.abc","com.gearup.booster","com.cn.MaxCheatGL","com.community.oneroom","com.movieshubinpire.android","app.netmirror.netmirrornew","com.jrzheng.supervpnfree","org.telegram.messenger.web","com.mx.thorcheat","org.telegram.messenger","com.gmail.heagoo.apkeditor.pro","com.apkpure.aegon","com.adguard.android","com.twofasapp","me.yourbay.airfrozen","com.onesports.score","com.apowersoft.mirror","com.applisto.appcloner","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","com.py.cloneapp.huawei","com.fitifyworkouts.bodyweight.workoutapp","eu.livesport.FlashScore_com","idm.internet.download.manager.plus","org.lsposed.manager","com.mbcp.helper","eu.thedarken.sdm.unlocker","p.gfgxk.dn","com.aorus.arbr","com.expressvpn.vpn","com.huawo.hawofit","popup.toast","com.scottyab.rootbeer.sample","org.telegram.plus","tw.nekomimi.nekogram","com.binance.dev","org.circleai","com.meowna.keybox","io.github.vvb2060.extractor","tk.yunus.hexeditor","com.meowna","com.twitter.android","com.abdurazaaqmohammed.AntiSplit","flar2.devcheck","bin.mt.termex","i.qlm","com.dexprotector.detector.envchecks","me.itejo443.bindhosts","com.android.preconditions.cts","com.studio.duckdetector","secure.unblock.unlimited.proxy.snap.hotspot.shield","kiwivpn.connectip.ipchanger.unblocksites","me.bmax.apatch","com.tempmail","com.houvven.oplusupdater","com.c.cn","tq.tech.Fpsfree","com.aide.ui","com.idragoncheats.studiopro","com.sand.remotesupportaddon","com.apkcombo.app","top.niunaijun.blackdexa64","gg.now.billing.service2","com.n0n3m4.droidc","com.catsmoker.app","kentos.loader","sami.pro.keyboard.free","com.discord","com.amanyt.tool","flix.com.vision","com.n0n3m4.gcc4droid","me.garfieldhan.attestation","com.happymod.apk","hd.camera","com.myprog.hexedit","com.t2.AvailoHader","cc.honista.app","net.maxters.droid.playi","io.github.a13e300.tricky_store","com.mantle.verify","com.lizardCheatsBGMI","com.lagofast.mobile.acclerater","com.nexstreaming.app.kinemasterfree","com.redfoxpro.iqcars","com.mapswithme.maps.pro","com.mf.file","A.jie.recordscreen","com.bizi.kernel","com.mt.isl.mpos.android.zainirq","com.matrixhax.myapplication","sa.gov.nic.myid","me.ninjagram.messenger","com.noping.gaming.vpn","com.nr.app","iq.oodi.com","com.osn.go","com.lbe.parallel.intl","com.sand.airdroidkidp","com.linux.permissionmanager","inc.trilokia.pubgfxtool.free","inc.trilokia.pubgfxtool","com.deveem.private.browser","com.mycompany.myapp","com.android.vending.billing.InAppBillingService.BINN","com.foxylab.airfox","com.flinkapps.safteynet","wu.Rookie.Detector","com.carriez.flutter_hbb","cnjkkx.usrmav.elfwth","co.solovpn","com.snapchat.android","com.sigma_rt.tcg","com.teamviewer.quicksupport.addon.universal","com.zoogvpn.android","com.PUBGDCL.kernel","com.BYemil","com.factum.nonpenitet","com.tencent.igce","themeworld.zte.nubia.red.magic8.magic9.ztenubiaredmagic8walls.launcher.theme","video.player.videoplayer","com.xe.currency","com.changpeng.instafilter","com.android.kpro","app.jumpjumpvpn.jumpjumpvpn","com.kbzbank.kpaycustomer","com.netflix.NGP.Kamo","com.facepunch.rust.companion","nchiyc.mpbmou.dionhs","com.x.wolfxradar","cuuca.sendfiles.Activity","chunqiu.safe.detector","com.handmark.expressweather","com.cybercat.acbridge","org.adblockplus.adblockplussbrowser","de.szalkowski.activitylauncher","com.anu.developers3k.rootchecker","com.htetznaing.adbotg","org.adaway","com.sec.android.app.sbrowser.webapk.w5bf26fddbe250ca726aa0479178923c91","com.example.androidzonews","dev.dworks.apps.anexplorer.free","dev.dworks.apps.anexplorer.pro","com.apk.editor","com.proapk.apk.installer","com.apkgetter","com.lb.app_manager","io.github.muntashirakon.AppManager","rk.android.app.appbar","com.apkmirror.helper.prod","com.a0soft.gphone.app2sd.pro","com.valhalla.bolt","eu.sisik.hackendebug","eu.sisik.hackendebug.full","com.lemon.lvoverseas","com.vishtekstudios.deviceinfo","org.aospstudio.devoptions","jp.co.bii.android.app.dskvzr","com.domka.theme.iconpack","com.sweetappproivders.setdpi","ru.niqhhfkq.iloqdyaeh","com.chornerman.easydpichanger","org.fdroid.fdroid","com.rom2box.fw_manager","com.flightradar24free","com.natewren.flight","com.samsung.android.heartplugin","com.samsung.android.app.watchmanager","com.androradar.livewallsg2","com.androradar.livewallsg3","com.androradar.livewallsg4","com.androradar.livewallsg9","com.androradar.livewallsg5","com.androradar.livewallsg6","com.androradar.livewallsg7","com.androradar.livewallsg8","com.androradar.livewallsg10","com.androradar.livewallsg16","com.pixsterstudio.gifmaker_editor_photo_gif_video","video.to.gif.maker","com.bk.videotogif","com.mike.gifmaker","gifmaker.gifcreator.gifeditor","com.monotype.android.font.kapp.custom_1714429462","com.csdeveloper.imgconverterpro","ru.tech.imageresizershrinker","com.spaceship.screen.textcopy","com.akbon.ios","cn.sealili.icons","co.livesatelliteview","com.screensavers_store.matrixlivewallpaper","mega.privacy.android.app","com.vpnbottle.melon.free.unblock.fast.vpn","com.mixplorer","com.mixplorer.beta","ru.gavrikov.mocklocations","com.hrd.motivation","com.motorola.wallpaper.parallaa","com.mxtech.videoplayer.ae","com.mxtech.videoplayer.pro","com.andatsoft.myapk.fwa","com.machiav3lli.fdroid","com.livewallpaper.opace5proBlack","ostrsf.ijmoeu.uircnu","in.pyshivam.clearappdata","com.ytheekshana.deviceinfo","ru.andr7e.deviceinfohw","com.fantasytat.det","me.yuki.folk","com.jazibkhan.equalizer","ropl.momo.item","me.neko.fckvip","com.secure.unblock.unlimited.proxy.vpnuk","free.vpnindia.unlimited.fast.secure.proxy.turbo","at.austriao.fake_gps_detector_app","com.fkjc.zcro","io.github.jqssun.gpssetter","ydyqb.kfqdjcxrr.b.s","com.android.lc","com.lizardCheats","com.accarunit.motionvideoeditor","app.greyshirts.firewall","yqheks.hcfaem.elmxyb","com.niksoftware.snapseed","dev.hexasoftware.v2box","com.resukisu.resukisu","io.ngankbakaa.lineage.detector","com.chuqniudetector","com.pyshivam.gplaylicense","com.aegis.apps","com.hydraultra.ipultrabox","com.hdobox.mudx","com.mediaon.apt","app.revanced.android.gms","pwyhpv.lkbxsq.opdmmq","com.security.xvpn.z35kb"],"extraOppositeAppList":[]},"com.microsoft.office.officehubrow":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.youku.phone":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"uk.co.santander.santanderUK":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"vn.com.techcombank.bb.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[9997],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hbl.android.hblmobilebanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.mventus.selfcare.activity":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.mservice.momotransfer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.android.preconditions.cts","com.rem01gaming.disclosure"],"extraOppositeAppList":[]},"id.my.pjm.qbcd_okr_dvii":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":true,"hideSystemInstallationSource":true,"excludeTargetInstallationSource":true,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.kikyps.crackme":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.youhu.laifu":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.revolut.revolut":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.google.android.apps.authenticator2":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.google.android.apps.maps":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.kotak.bank.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.dbs.dbschina":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.VCB":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"bjj.bank.digital.indo.prod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.mbmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.gsm.customer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.lazada.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"io.github.rabehx.securify":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.Version1":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.lemon.lvoverseas":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.xiaomi.mipicks":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.axis.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"my.com.cimb.ngb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.ifast.dtb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.ifast.gb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.cimb.sg.clicksMobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.bpjstku":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"io.liankong.riskdetector":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.tsng.applistdetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.zing.zalo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.OrangeEnvironment.Detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.miui.newhome":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.xunmeng.pinduoduo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.twitter.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.scottyab.rootbeer.sample":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.deepseek.chat":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.grabtaxi.passenger":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.miui.player":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.miui.gallery":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"cn.wps.moffice_eng.xiaomi.lite":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.microsoft.office.outlook":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.google.android.apps.walletnfcrel":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.apple.bnd":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.xiaomi.youpin":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"ex.indianoil.in":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"px.indianoil.in":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.reveny.nativecheck":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.suryoday.MB":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.globe.gcash.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.paypal.android.p2pmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.ubercab.driver":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.miniclip.eightballpool":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":["com.miniclip.tactics"]},"com.paygo24.ibank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.android.nativetest":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"chunqiu.safe":{"useWhitelist":false,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.tsng.hidemyapplist"],"extraOppositeAppList":[]},"app.tabby.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"icu.nullptr.nativetext":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.simplesusdetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.chunqiu.detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.vn.dongabank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.finx.vikki":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"me.nukrs.root.envcheck":{"useWhitelist":true,"excludeSystemApps":false,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.hdfcbank.android.now":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.tpb.mb.gprsandroid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.viettel.bss.viettelpos.v4":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.crunchyroll.crunchyroid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"in.irisbyyes.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.garena.game.kgvo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["moe.shizuku.privileged.api","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","bin.mt.plus.canary","bin.mt.plus","bin.mt.termex","com.sukisu.ultra","com.tsng.hidemyapplist","com.my.televip","com.coderstory.toolkit","io.github.lsposed.disableflagsecure"],"extraOppositeAppList":[]},"com.squareup":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.vnpay.Agribank3g":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":["ys.od.pfjp.n.jsobh","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile"],"extraOppositeAppList":[]},"az.kapitalbank.mbanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.bandhan.mBandhan":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.dd.doordash":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.doordash.driverapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.grubhub.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.ubercab":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"me.lyft.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.ubercab.eats":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.tencent.ig":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.zhenxi.hunter","com.byxiaorun.detector","io.github.lsposed.disableflagsecure","io.github.vvb2060.mahoshojo","io.liankong.riskdetector","io.github.rabehx.securify","com.thend.integritychecker","bin.mt.plus.canary","com.android.nativetest","icu.nullptr.nativetest","com.coderstory.toolkit","com.sukisu.ultra","com.tencent.docs","me.garfieldhan.holmes","com.github.capntrips.kernelflasher","com.reveny.nativecheck","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","com.my.televip","io.github.vvb2060.keyattestation","com.henrikherzig.playintegritychecker","krypton.tbsafetychecker","com.youhu.laifu","com.tsng.applistdetector","com.kikyps.crackme","com.jc","io.github.a13e300.ksuwebui","io.github.huskydg.memorydetector","com.godevelopers.OprekCek","id.my.pjm.qbcd_okr_dvii","luna.safe.luna","me.yuri.ok","icu.nullptr.nativetext","com.tsng.hidemyapplist","com.zrt.xposed","xzr.hkf","com.android.shell","com.dergoogler.mmrl","com.dergoogler.mmrl.wx","com.aurora.store.nightly","io.github.vvb2060.magisk","com.luckyzyx.luckytool","com.topjohnwu.magisk","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","icu.nullptr.applistdetector","com.omarea.vtools","com.cloudflare.onedotonedotonedotone","bin.mt.plus","me.weishu.kernelsu","gvbtcl.yubbjm.qajtjy","tsfvdj.xiwtkz.wuhyrv","com.android.kernel","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.termux","com.thor.nonroot","com.pyshivam.geergit","top.ltfan.notdeveloper","ru.zdevs.zarchiver","com.modaov.unlock60fps","org.matrix.demo","com.aorus.extr","com.rcmiku.payload.dumper.compose","wu.Zygisk.Detector","com.suqi8.oshin","com.owopdopkmd.wzarcdtfv","com.abc.abc","com.gearup.booster","com.cn.MaxCheatGL","com.community.oneroom","com.movieshubinpire.android","app.netmirror.netmirrornew","com.jrzheng.supervpnfree","org.telegram.messenger.web","com.mx.thorcheat","org.telegram.messenger","com.gmail.heagoo.apkeditor.pro","com.apkpure.aegon","com.adguard.android","com.twofasapp","me.yourbay.airfrozen","com.onesports.score","com.apowersoft.mirror","com.applisto.appcloner","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","com.py.cloneapp.huawei","com.fitifyworkouts.bodyweight.workoutapp","eu.livesport.FlashScore_com","idm.internet.download.manager.plus","org.lsposed.manager","com.mbcp.helper","eu.thedarken.sdm.unlocker","p.gfgxk.dn","com.aorus.arbr","com.expressvpn.vpn","com.huawo.hawofit","popup.toast","com.scottyab.rootbeer.sample","org.telegram.plus","tw.nekomimi.nekogram","com.binance.dev","org.circleai","com.meowna.keybox","io.github.vvb2060.extractor","tk.yunus.hexeditor","com.meowna","com.twitter.android","com.abdurazaaqmohammed.AntiSplit","flar2.devcheck","bin.mt.termex","i.qlm","com.dexprotector.detector.envchecks","me.itejo443.bindhosts","com.android.preconditions.cts","com.studio.duckdetector","secure.unblock.unlimited.proxy.snap.hotspot.shield","kiwivpn.connectip.ipchanger.unblocksites","me.bmax.apatch","com.tempmail","com.houvven.oplusupdater","com.c.cn","tq.tech.Fpsfree","com.aide.ui","com.idragoncheats.studiopro","com.sand.remotesupportaddon","com.apkcombo.app","top.niunaijun.blackdexa64","gg.now.billing.service2","com.n0n3m4.droidc","com.catsmoker.app","kentos.loader","sami.pro.keyboard.free","com.discord","com.amanyt.tool","flix.com.vision","com.n0n3m4.gcc4droid","me.garfieldhan.attestation","com.happymod.apk","hd.camera","com.myprog.hexedit","com.t2.AvailoHader","cc.honista.app","net.maxters.droid.playi","io.github.a13e300.tricky_store","com.mantle.verify","com.lizardCheatsBGMI","com.lagofast.mobile.acclerater","com.nexstreaming.app.kinemasterfree","com.redfoxpro.iqcars","com.mapswithme.maps.pro","com.mf.file","A.jie.recordscreen","com.bizi.kernel","com.mt.isl.mpos.android.zainirq","com.matrixhax.myapplication","sa.gov.nic.myid","me.ninjagram.messenger","com.noping.gaming.vpn","com.nr.app","iq.oodi.com","com.osn.go","com.lbe.parallel.intl","com.sand.airdroidkidp","com.linux.permissionmanager","inc.trilokia.pubgfxtool.free","inc.trilokia.pubgfxtool","com.deveem.private.browser","com.mycompany.myapp","com.android.vending.billing.InAppBillingService.BINN","com.foxylab.airfox","com.flinkapps.safteynet","wu.Rookie.Detector","com.carriez.flutter_hbb","cnjkkx.usrmav.elfwth","co.solovpn","com.snapchat.android","com.sigma_rt.tcg","com.teamviewer.quicksupport.addon.universal","com.zoogvpn.android","com.PUBGDCL.kernel","com.BYemil","com.factum.nonpenitet","com.tencent.igce","themeworld.zte.nubia.red.magic8.magic9.ztenubiaredmagic8walls.launcher.theme","video.player.videoplayer","com.xe.currency","com.changpeng.instafilter","com.android.kpro","app.jumpjumpvpn.jumpjumpvpn","com.kbzbank.kpaycustomer","com.netflix.NGP.Kamo","com.facepunch.rust.companion","nchiyc.mpbmou.dionhs","com.x.wolfxradar","cuuca.sendfiles.Activity","chunqiu.safe.detector","com.handmark.expressweather","com.cybercat.acbridge","org.adblockplus.adblockplussbrowser","de.szalkowski.activitylauncher","com.anu.developers3k.rootchecker","com.htetznaing.adbotg","org.adaway","com.sec.android.app.sbrowser.webapk.w5bf26fddbe250ca726aa0479178923c91","com.example.androidzonews","dev.dworks.apps.anexplorer.free","dev.dworks.apps.anexplorer.pro","com.apk.editor","com.proapk.apk.installer","com.apkgetter","com.lb.app_manager","io.github.muntashirakon.AppManager","rk.android.app.appbar","com.apkmirror.helper.prod","com.a0soft.gphone.app2sd.pro","com.valhalla.bolt","eu.sisik.hackendebug","eu.sisik.hackendebug.full","com.lemon.lvoverseas","com.vishtekstudios.deviceinfo","org.aospstudio.devoptions","jp.co.bii.android.app.dskvzr","com.domka.theme.iconpack","com.sweetappproivders.setdpi","ru.niqhhfkq.iloqdyaeh","com.chornerman.easydpichanger","org.fdroid.fdroid","com.rom2box.fw_manager","com.flightradar24free","com.natewren.flight","com.samsung.android.heartplugin","com.samsung.android.app.watchmanager","com.androradar.livewallsg2","com.androradar.livewallsg3","com.androradar.livewallsg4","com.androradar.livewallsg9","com.androradar.livewallsg5","com.androradar.livewallsg6","com.androradar.livewallsg7","com.androradar.livewallsg8","com.androradar.livewallsg10","com.androradar.livewallsg16","com.pixsterstudio.gifmaker_editor_photo_gif_video","video.to.gif.maker","com.bk.videotogif","com.mike.gifmaker","gifmaker.gifcreator.gifeditor","com.monotype.android.font.kapp.custom_1714429462","com.csdeveloper.imgconverterpro","ru.tech.imageresizershrinker","com.spaceship.screen.textcopy","com.akbon.ios","cn.sealili.icons","co.livesatelliteview","com.screensavers_store.matrixlivewallpaper","mega.privacy.android.app","com.vpnbottle.melon.free.unblock.fast.vpn","com.mixplorer","com.mixplorer.beta","ru.gavrikov.mocklocations","com.hrd.motivation","com.motorola.wallpaper.parallaa","com.mxtech.videoplayer.ae","com.mxtech.videoplayer.pro","com.andatsoft.myapk.fwa","com.machiav3lli.fdroid","com.livewallpaper.opace5proBlack","ostrsf.ijmoeu.uircnu","in.pyshivam.clearappdata","com.ytheekshana.deviceinfo","ru.andr7e.deviceinfohw","com.fantasytat.det","me.yuki.folk","com.jazibkhan.equalizer","ropl.momo.item","me.neko.fckvip","com.secure.unblock.unlimited.proxy.vpnuk","free.vpnindia.unlimited.fast.secure.proxy.turbo","at.austriao.fake_gps_detector_app","com.fkjc.zcro","io.github.jqssun.gpssetter","ydyqb.kfqdjcxrr.b.s","com.android.lc","com.lizardCheats","com.accarunit.motionvideoeditor","app.greyshirts.firewall","yqheks.hcfaem.elmxyb","com.niksoftware.snapseed","dev.hexasoftware.v2box","com.resukisu.resukisu","io.ngankbakaa.lineage.detector","com.chuqniudetector","com.pyshivam.gplaylicense","com.aegis.apps","com.hydraultra.ipultrabox","com.hdobox.mudx","com.mediaon.apt","app.revanced.android.gms","pwyhpv.lkbxsq.opdmmq","com.security.xvpn.z35kb","lcehic.cxkirx.puzvmy","com.yoyodan.kc"],"extraOppositeAppList":[]},"com.pubg.krmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.zhenxi.hunter","com.byxiaorun.detector","io.github.lsposed.disableflagsecure","io.github.vvb2060.mahoshojo","io.liankong.riskdetector","io.github.rabehx.securify","com.thend.integritychecker","bin.mt.plus.canary","com.android.nativetest","icu.nullptr.nativetest","com.coderstory.toolkit","com.sukisu.ultra","com.tencent.docs","me.garfieldhan.holmes","com.github.capntrips.kernelflasher","com.reveny.nativecheck","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","com.my.televip","io.github.vvb2060.keyattestation","com.henrikherzig.playintegritychecker","krypton.tbsafetychecker","com.youhu.laifu","com.tsng.applistdetector","com.kikyps.crackme","com.jc","io.github.a13e300.ksuwebui","io.github.huskydg.memorydetector","com.godevelopers.OprekCek","id.my.pjm.qbcd_okr_dvii","luna.safe.luna","me.yuri.ok","icu.nullptr.nativetext","com.tsng.hidemyapplist","com.zrt.xposed","xzr.hkf","com.android.shell","com.dergoogler.mmrl","com.dergoogler.mmrl.wx","com.aurora.store.nightly","io.github.vvb2060.magisk","com.luckyzyx.luckytool","com.topjohnwu.magisk","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","icu.nullptr.applistdetector","com.omarea.vtools","com.cloudflare.onedotonedotonedotone","bin.mt.plus","me.weishu.kernelsu","gvbtcl.yubbjm.qajtjy","tsfvdj.xiwtkz.wuhyrv","com.android.kernel","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.termux","com.thor.nonroot","com.pyshivam.geergit","top.ltfan.notdeveloper","ru.zdevs.zarchiver","com.modaov.unlock60fps","org.matrix.demo","com.aorus.extr","com.rcmiku.payload.dumper.compose","wu.Zygisk.Detector","com.suqi8.oshin","com.owopdopkmd.wzarcdtfv","com.abc.abc","com.gearup.booster","com.cn.MaxCheatGL","com.community.oneroom","com.movieshubinpire.android","app.netmirror.netmirrornew","com.jrzheng.supervpnfree","org.telegram.messenger.web","com.mx.thorcheat","org.telegram.messenger","com.gmail.heagoo.apkeditor.pro","com.apkpure.aegon","com.adguard.android","com.twofasapp","me.yourbay.airfrozen","com.onesports.score","com.apowersoft.mirror","com.applisto.appcloner","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","com.py.cloneapp.huawei","com.fitifyworkouts.bodyweight.workoutapp","eu.livesport.FlashScore_com","idm.internet.download.manager.plus","org.lsposed.manager","com.mbcp.helper","eu.thedarken.sdm.unlocker","p.gfgxk.dn","com.aorus.arbr","com.expressvpn.vpn","com.huawo.hawofit","popup.toast","com.scottyab.rootbeer.sample","org.telegram.plus","tw.nekomimi.nekogram","com.binance.dev","org.circleai","com.meowna.keybox","io.github.vvb2060.extractor","tk.yunus.hexeditor","com.meowna","com.twitter.android","com.abdurazaaqmohammed.AntiSplit","flar2.devcheck","bin.mt.termex","i.qlm","com.dexprotector.detector.envchecks","me.itejo443.bindhosts","com.android.preconditions.cts","com.studio.duckdetector","secure.unblock.unlimited.proxy.snap.hotspot.shield","kiwivpn.connectip.ipchanger.unblocksites","me.bmax.apatch","com.tempmail","com.houvven.oplusupdater","com.c.cn","tq.tech.Fpsfree","com.aide.ui","com.idragoncheats.studiopro","com.sand.remotesupportaddon","com.apkcombo.app","top.niunaijun.blackdexa64","gg.now.billing.service2","com.n0n3m4.droidc","com.catsmoker.app","kentos.loader","sami.pro.keyboard.free","com.discord","com.amanyt.tool","flix.com.vision","com.n0n3m4.gcc4droid","me.garfieldhan.attestation","com.happymod.apk","hd.camera","com.myprog.hexedit","com.t2.AvailoHader","cc.honista.app","net.maxters.droid.playi","io.github.a13e300.tricky_store","com.mantle.verify","com.lizardCheatsBGMI","com.lagofast.mobile.acclerater","com.nexstreaming.app.kinemasterfree","com.redfoxpro.iqcars","com.mapswithme.maps.pro","com.mf.file","A.jie.recordscreen","com.bizi.kernel","com.mt.isl.mpos.android.zainirq","com.matrixhax.myapplication","sa.gov.nic.myid","me.ninjagram.messenger","com.noping.gaming.vpn","com.nr.app","iq.oodi.com","com.osn.go","com.lbe.parallel.intl","com.sand.airdroidkidp","com.linux.permissionmanager","inc.trilokia.pubgfxtool.free","inc.trilokia.pubgfxtool","com.deveem.private.browser","com.mycompany.myapp","com.android.vending.billing.InAppBillingService.BINN","com.foxylab.airfox","com.flinkapps.safteynet","wu.Rookie.Detector","com.carriez.flutter_hbb","cnjkkx.usrmav.elfwth","co.solovpn","com.snapchat.android","com.sigma_rt.tcg","com.teamviewer.quicksupport.addon.universal","com.zoogvpn.android","com.PUBGDCL.kernel","com.BYemil","com.factum.nonpenitet","com.tencent.igce","themeworld.zte.nubia.red.magic8.magic9.ztenubiaredmagic8walls.launcher.theme","video.player.videoplayer","com.xe.currency","com.changpeng.instafilter","com.android.kpro","app.jumpjumpvpn.jumpjumpvpn","com.kbzbank.kpaycustomer","com.netflix.NGP.Kamo","com.facepunch.rust.companion","nchiyc.mpbmou.dionhs","com.x.wolfxradar","cuuca.sendfiles.Activity","chunqiu.safe.detector","com.handmark.expressweather","com.cybercat.acbridge","org.adblockplus.adblockplussbrowser","de.szalkowski.activitylauncher","com.anu.developers3k.rootchecker","com.htetznaing.adbotg","org.adaway","com.sec.android.app.sbrowser.webapk.w5bf26fddbe250ca726aa0479178923c91","com.example.androidzonews","dev.dworks.apps.anexplorer.free","dev.dworks.apps.anexplorer.pro","com.apk.editor","com.proapk.apk.installer","com.apkgetter","com.lb.app_manager","io.github.muntashirakon.AppManager","rk.android.app.appbar","com.apkmirror.helper.prod","com.a0soft.gphone.app2sd.pro","com.valhalla.bolt","eu.sisik.hackendebug","eu.sisik.hackendebug.full","com.lemon.lvoverseas","com.vishtekstudios.deviceinfo","org.aospstudio.devoptions","jp.co.bii.android.app.dskvzr","com.domka.theme.iconpack","com.sweetappproivders.setdpi","ru.niqhhfkq.iloqdyaeh","com.chornerman.easydpichanger","org.fdroid.fdroid","com.rom2box.fw_manager","com.flightradar24free","com.natewren.flight","com.samsung.android.heartplugin","com.samsung.android.app.watchmanager","com.androradar.livewallsg2","com.androradar.livewallsg3","com.androradar.livewallsg4","com.androradar.livewallsg9","com.androradar.livewallsg5","com.androradar.livewallsg6","com.androradar.livewallsg7","com.androradar.livewallsg8","com.androradar.livewallsg10","com.androradar.livewallsg16","com.pixsterstudio.gifmaker_editor_photo_gif_video","video.to.gif.maker","com.bk.videotogif","com.mike.gifmaker","gifmaker.gifcreator.gifeditor","com.monotype.android.font.kapp.custom_1714429462","com.csdeveloper.imgconverterpro","ru.tech.imageresizershrinker","com.spaceship.screen.textcopy","com.akbon.ios","cn.sealili.icons","co.livesatelliteview","com.screensavers_store.matrixlivewallpaper","mega.privacy.android.app","com.vpnbottle.melon.free.unblock.fast.vpn","com.mixplorer","com.mixplorer.beta","ru.gavrikov.mocklocations","com.hrd.motivation","com.motorola.wallpaper.parallaa","com.mxtech.videoplayer.ae","com.mxtech.videoplayer.pro","com.andatsoft.myapk.fwa","com.machiav3lli.fdroid","com.livewallpaper.opace5proBlack","ostrsf.ijmoeu.uircnu","in.pyshivam.clearappdata","com.ytheekshana.deviceinfo","ru.andr7e.deviceinfohw","com.fantasytat.det","me.yuki.folk","com.jazibkhan.equalizer","ropl.momo.item","me.neko.fckvip","com.secure.unblock.unlimited.proxy.vpnuk","free.vpnindia.unlimited.fast.secure.proxy.turbo","at.austriao.fake_gps_detector_app","com.fkjc.zcro","io.github.jqssun.gpssetter","ydyqb.kfqdjcxrr.b.s","com.android.lc","com.lizardCheats","com.accarunit.motionvideoeditor","app.greyshirts.firewall","yqheks.hcfaem.elmxyb","com.niksoftware.snapseed","dev.hexasoftware.v2box","com.resukisu.resukisu","io.ngankbakaa.lineage.detector","com.chuqniudetector","com.pyshivam.gplaylicense","com.aegis.apps","com.hydraultra.ipultrabox","com.hdobox.mudx","com.mediaon.apt","app.revanced.android.gms","pwyhpv.lkbxsq.opdmmq","com.security.xvpn.z35kb"],"extraOppositeAppList":[]},"com.grabtaxi.driver2":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.revolut.business":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"ru.ozon.fintech.finance":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.transfergo.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.kozhevin.rootchecks":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"lt.lemonlabs.android.paysera":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.paysend.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"gr.payzy":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.robinhood.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.robinhood.global":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"net.typeblog.shelter":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.moneybookers.skrillpayments":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"vivid.money":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.android1500.yard":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"ru.rostel":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"org.chromium.webapk.aadc7284a22f4efbc_v2":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.moonpay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.garena.gaslite":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.android.preconditions.cts","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","io.github.vvb2060.keyattestation","com.luckyzyx.luckytool","bin.mt.plus.canary","com.reveny.nativecheck","icu.nullptr.nativetest","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","moe.shizuku.privileged.api","com.sukisu.ultra","org.telegram.messenger","com.heytap.themestore","com.free.vpn.india.proxy.planet","com.android.shell"],"extraOppositeAppList":[]},"com.dts.freefiremax":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["io.github.vvb2060.magisk","me.bmax.apatch","com.tsng.applistdetector","icu.nullptr.applistdetector","com.youhu.laifu","org.frknkrc44.hma_oss","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","com.anydesk.anydeskandroid","io.github.huskydg.memorydetector","com.reveny.nativecheck","io.liankong.riskdetector","com.byxiaorun.detector","icu.nullptr.nativetest","com.android.nativetest","io.github.a13e300.ksuwebui","com.dergoogler.mmrl","com.topjohnwu.magisk","com.sukisu.ultra","com.luckyzyx.luckytool","bin.mt.plus.canary","com.android.shell","com.coderstory.toolkit","com.zrt.xposed","com.android.kernel","com.android.cngpcebkchn","com.game.kernel","com.android.cnpgcebkgl","org.telegram.messenger","org.telegram.plus","com.my.televip","ru.zdevs.zarchiver","io.github.rabehx.securify","com.zhenxi.hunter","moe.shizuku.privileged.api","io.github.chsbuffer.revancedxposed","xzr.hkf","io.github.lsposed.disableflagsecure","com.garena.gaslite","luna.safe.luna","com.anydesk.adcontrol.ad1","com.omarea.vtools","me.garfieldhan.holmes","com.rcmiku.payload.dumper.compose","com.kikyps.crackme","io.github.vvb2060.mahoshojo","com.android.preconditions.cts","com.rem01gaming.disclosure","io.github.vvb2060.keyattestation","gr.nikolasspyr.integritycheck","com.free.vpn.india.proxy.planet","com.owopdopkmd.wzarcdtfv","gnouh.tool","bin.mt.termex","bin.mt.plus","krypton.tbsafetychecker","com.doithecao247","flar2.devcheck","com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.truedevelopersstudio.automatictap.autoclicker","com.molink.john.hummingbird","com.studio.duckdetector","com.xthax.dst","free.vpnindia.unlimited.fast.secure.proxy.turbo","com.qosaw.suybcfrx.orpm","com.parallelc.micts","com.nstudio.mtoolkit","pikjeftbrovsrvz.jyy"],"extraOppositeAppList":[]},"com.vng.codmvn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.garena.game.df":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.tsng.hidemyapplist","org.frknkrc44.hma_oss","com.cloudflare.onedotonedotonedotone","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","bin.mt.plus.canary","bin.mt.plus","com.sukisu.ultra","io.github.vvb2060.magisk","com.topjohnwu.magisk","me.bmax.apatch","icu.nullptr.applistdetector","com.tsng.applistdetector","io.github.huskydg.memorydetector","com.reveny.nativecheck","com.byxiaorun.detector","io.liankong.riskdetector","com.kikyps.crackme","com.omarea.vtools","com.my.televip","org.telegram.plus","org.telegram.messenger","com.android.shell","moe.shizuku.privileged.api","io.github.lsposed.disableflagsecure","com.luckyzyx.luckytool","com.zhenxi.hunter","com.youhu.laifu","com.coloros.securepay","com.android.cngpcebkchn","com.android.cnpgcebkgl","com.android.kernel","com.game.kernel","com.zrt.xposed"],"extraOppositeAppList":[]},"com.unionpay.tsmservice":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.riotgames.league.wildriftvn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":["io.github.vvb2060.magisk","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","me.bmax.apatch","com.sukisu.ultra","icu.nullptr.applistdetector","com.tsng.applistdetector","com.youhu.laifu","org.frknkrc44.hma_oss","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","io.liankong.riskdetector","com.byxiaorun.detector","com.reveny.nativecheck","io.github.huskydg.memorydetector","icu.nullptr.nativetest","com.android.nativetest","luna.safe.luna","bin.mt.plus.canary","com.kikyps.crackme","com.omarea.vtools","com.my.televip","org.telegram.plus","org.telegram.messenger","com.android.cngpcebkchn","com.android.cnpgcebkgl","com.android.kernel","com.game.kernel","com.zrt.xposed","com.garena.gaslite","xzr.hkf","me.garfieldhan.holmes","com.zhenxi.hunter","io.github.a13e300.ksuwebui","com.luckyzyx.luckytool","com.topjohnwu.magisk","io.github.vvb2060.mahoshojo","moe.shizuku.privileged.api","com.android.shell","io.github.rabehx.securify","ru.zdevs.zarchiver","io.github.chsbuffer.revancedxposed","com.coderstory.toolkit","io.github.lsposed.disableflagsecure"],"extraOppositeAppList":[]},"com.dts.freefireth":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","io.github.vvb2060.magisk","me.bmax.apatch","com.anydesk.anydeskandroid","icu.nullptr.applistdetector","com.tsng.applistdetector","com.youhu.laifu","org.frknkrc44.hma_oss","com.coderstory.toolkit","com.kikyps.crackme","me.garfieldhan.holmes","xzr.hkf","com.zhenxi.hunter","com.android.kernel","com.game.kernel","io.github.a13e300.ksuwebui","com.luckyzyx.luckytool","luna.safe.luna","com.topjohnwu.magisk","com.dergoogler.mmrl","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","com.reveny.nativecheck","com.android.nativetest","icu.nullptr.nativetest","com.rcmiku.payload.dumper.compose","org.telegram.plus","com.teamviewer.quicksupport.market","io.github.chsbuffer.revancedxposed","io.liankong.riskdetector","com.byxiaorun.detector","com.omarea.vtools","io.github.rabehx.securify","moe.shizuku.privileged.api","com.my.televip","com.teamviewer.teamviewer.market.mobile","ru.zdevs.zarchiver","com.zrt.xposed","com.android.cngpcebkchn","com.android.cnpgcebkgl","io.github.huskydg.memorydetector","com.android.shell","bin.mt.plus","bin.mt.termex","com.sukisu.ultra","org.telegram.messenger","com.ss.android.ugc.trill","ibwpdd.vxisug.sjetci"],"extraOppositeAppList":[]},"com.squareup.cash":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.rem01gaming.disclosure":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.qnbalahli.bebasata":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.customer.herofincorp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"mobile.acb.com.vn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"vnpay.smartacccount":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.tpb.ebmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ph.com.gotyme":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.rcbc.pulz":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"sa.com.stcbank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ph.allbank.mbapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"zebpay.Application":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"ph.com.metrobank.mcc.mbonline":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["top.ltfan.notdeveloper","org.frknkrc44.hma_oss"],"extraOppositeAppList":[]},"com.proxima.dfm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.anydeskandroid","com.kikyps.crackme","ninja.thiha.frozenkeyboard2","org.frknkrc44.hma_oss","com.happymod.apk","me.garfieldhan.holmes","xzr.hkf","com.zhenxi.hunter","com.catchingnow.icebox","com.github.capntrips.kernelflasher","com.android.kernel","com.mixplorer","com.minimax.ai","io.github.vvb2060.mahoshojo","bin.mt.plus","com.reveny.nativecheck","com.android.nativetest","icu.nullptr.nativetest","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.sukisu.ultra","com.termux","com.thor.nonroot","ru.zdevs.zarchiver","com.anydesk.adcontrol.ad1","com.android.shell","com.tsng.applistdetector","icu.nullptr.applistdetector","com.youhu.laifu","com.rem01gaming.disclosure"],"extraOppositeAppList":[]},"vn.com.msb.smartBanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.amazon.rabbit":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.amazon.flex.rabbit":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ubi.parivar":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"org.matrix.demo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"eu.eleader.mobilebanking.nbk":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.okinc.okex.gp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.vcb.t2p":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.alinma.retail.mobile.v4":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.garena.game.kgvn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","icu.nullptr.applistdetector","com.tsng.applistdetector","com.youhu.laifu","com.kikyps.crackme","org.matrix.demo","com.modaov.turbogamebooster","com.rem01gaming.disclosure","com.digilocker.android","com.garena.gaslite","org.frknkrc44.hma_oss","me.garfieldhan.holmes","xzr.hkf","com.zhenxi.hunter","top.ltfan.notdeveloper","com.rifsxd.ksunext","io.github.a13e300.ksuwebui","io.github.vvb2060.mahoshojo","io.github.huskydg.memorydetector","icu.nullptr.nativetest","com.android.nativetest","com.reveny.nativecheck","tw.nekomimi.nekogram","org.telegram.plus","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","io.liankong.riskdetector","com.scottyab.rootbeer.sample","io.github.rabehx.securify","moe.shizuku.privileged.api","me.bmax.apatch","bin.mt.termex","bin.mt.plus","org.circleai","me.garfieldhan.attestation","tk.yunus.hexeditor","io.github.vvb2060.extractor","com.github.capntrips.kernelflasher","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.luckyzyx.luckytool","com.meowna","com.rcmiku.payload.dumper.compose","com.byxiaorun.detector","com.carriez.flutter_hbb","com.sukisu.ultra","com.my.televip","com.termux","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.abdurazaaqmohammed.AntiSplit","luna.safe.luna","com.android.shell","com.android.preconditions.cts","bin.mt.plus.canary","com.free.vpn.india.proxy.planet","com.owopdopkmd.wzarcdtfv","org.telegram.messenger","com.teamviewer.quicksupport.market","com.ss.android.ugc.trill","ibwpdd.vxisug.sjetci","io.github.vvb2060.keyattestation","krypton.tbsafetychecker"],"extraOppositeAppList":[]},"xyz.be.cake":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.bpi.ng.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"cashgiraffe.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.sacombank.ewallet":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.vib.myvib2":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.tencent.mm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"wu.Zygisk.Detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.meowna":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.abc.abc","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.youhu.laifu","com.kikyps.crackme","com.gearup.booster","org.frknkrc44.hma_oss","com.zhenxi.hunter","com.cn.MaxCheatGL","com.reveny.nativecheck","icu.nullptr.nativetest","io.liankong.riskdetector","com.byxiaorun.detector","com.sukisu.ultra","com.jrzheng.supervpnfree"],"extraOppositeAppList":[]},"com.discord":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.garena.game.kgtw":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.android.preconditions.cts","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","io.github.vvb2060.keyattestation","com.luckyzyx.luckytool","bin.mt.plus.canary","com.reveny.nativecheck","icu.nullptr.nativetest","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","moe.shizuku.privileged.api","com.sukisu.ultra","org.telegram.messenger","com.android.shell"],"extraOppositeAppList":[]},"com.vttm.vietteldiscovery":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.whatsapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"vn.shb.saha.mbanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["p.gfgxk.dn","com.cloudflare.onedotonedotonedotone","com.twofasapp","com.anydesk.adcontrol.ad1","com.adguard.android","me.yourbay.airfrozen","com.onesports.score","com.gmail.heagoo.apkeditor.pro","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui"],"extraOppositeAppList":[]},"br.com.bb.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.lcode.ucoupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"de.barmergek.serviceapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.bKash.customerapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"pro.bingbon.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.alahli.rf":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.proximabeta.mf.uamo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.angel.guardian.alliance.app","com.anydesk.anydeskandroid","com.aorus.arbr","com.eco.global.app","com.evnhcmc.evnmobileapp","com.expressvpn.vpn","com.goldfun.app","com.havaz_app","com.huawo.hawofit","org.frknkrc44.hma_oss","popup.toast","bin.mt.plus","org.telegram.messenger","com.sukisu.ultra","com.android.shell"],"extraOppositeAppList":[]},"com.proximabeta.mf.liteuamo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.angel.guardian.alliance.app","com.anydesk.anydeskandroid","com.aorus.arbr","com.expressvpn.vpn","com.eco.global.app","com.evnhcmc.evnmobileapp","com.goldfun.app","com.havaz_app","com.huawo.hawofit","org.frknkrc44.hma_oss","popup.toast","bin.mt.plus","org.telegram.messenger","com.sukisu.ultra","com.android.shell"],"extraOppositeAppList":[]},"com.vnggames.cfl.crossfirelegends":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.angel.guardian.alliance.app","com.anydesk.anydeskandroid","com.aorus.arbr","com.eco.global.app","com.evnhcmc.evnmobileapp","com.expressvpn.vpn","com.havaz_app","com.huawo.hawofit","org.frknkrc44.hma_oss","com.mm.android.smartlifeiot","popup.toast","bin.mt.plus","org.telegram.messenger","com.sukisu.ultra","com.android.shell"],"extraOppositeAppList":[]},"com.eco.global.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.goldfun.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.havaz_app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.angel.guardian.alliance.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.chillyroom.jdyw.gp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.angel.guardian.alliance.app","com.aorus.arbr","com.eco.global.app","com.evnhcmc.evnmobileapp","com.expressvpn.vpn","org.frknkrc44.hma_oss","com.huawo.hawofit","com.havaz_app","com.goldfun.app","popup.toast","com.mm.android.smartlifeiot","bin.mt.plus","com.sukisu.ultra","org.telegram.messenger","com.android.shell"],"extraOppositeAppList":[]},"com.pbb.mypb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.snapwork.hdfc":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"sg.ndi.sp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.studio.duckdetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"iq.qicard.qipay.prod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.aide.ui","com.idragoncheats.studiopro"],"extraOppositeAppList":[]},"com.shopify.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","org.amnezia.vpn","com.thexjxgduwoh.holppkukkufjbtu","com.anydesk.anydeskandroid","com.applisto.appcloner","com.tsng.applistdetector","com.sunilpaulmathew.debloater","com.py.cloneapp.huawei","com.piriform.ccleaner","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","ru.otdr.deviceinfo","com.androidfung.drminfo","com.okirat.dnsmanager.pro","com.studio.duckdetector","com.rem01gaming.disclosure","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.pyshivam.geergit","com.kikyps.crackme","com.pyshivam.gplaylicense","com.freemium.android.apps.gps.coordinates","com.android1500.gpssetter","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","io.github.vvb2060.mahoshojo","bin.mt.plus","com.obbedcode.mydevids","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","me.hoshino.novpndetect","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","net.xnano.android.photoexifeditor.pro","org.proxydroid","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.byxiaorun.detector","io.github.rabehx.securify","pl.moniusoft.showmyip","net.typeblog.socks","com.henrikherzig.playintegritychecker","com.scheler.superproxy","org.swiftapps.swiftbackup","com.lonelycatgames.Xplore","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","id.my.pjm.qbcd_okr_dvii","dz.orzzsttlunbkj","com.jhc.detach","com.telegram.a1064","com.defragd3m0n.cashappsoftresetids","com.android.shell"],"extraOppositeAppList":[]},"br.com.gabba.Caixa":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ro.btrl.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.bitdefender.gravityzone.securityformobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.ocb.liobank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.securitybank.bbx":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.ausmallfinancebank.amb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"com.AlBarakaEG.CorpNew":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"vn.cimbbank.octo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.sotaylpb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"vn.shb.mbanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.cibc.android.mobi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.nbk.weyay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.indiainfoline":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.app.hdfc":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.adcb.bank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hdfcbank.smartwealthapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.reservebankofindia":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.dbs.sg.dbsmbanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.iexceed.ib.digitalbankingprod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.snapwork.IDBI":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"vn.com.lpb.lienviet24h":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.msf.kbank.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ops.namabank.com.vn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"uk.co.hsbc.hsbcukmobilebanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.sbg.mobile.phone":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.shinhan.global.in.bank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.nu.production":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"io.lifestyle.plus":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.sbi.SBIFreedomPlus":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hsl.investright":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"in.hsbc.hsbcindia":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.fedmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"vn.tnex.consumer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"capitec.acuity.mobile.prod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.infrasoft.uboi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"co.uk.getmondo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"enetviet.corp.qi.enetvietnew":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.roblox.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.kiloo.subwaysurf":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"exodusmovement.exodus":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.worldfirst.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.transferwise.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"br.com.intermedium":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["dev_options"],"extraAppList":[],"extraOppositeAppList":[]},"vn.com.ocb.awe":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hdfcfund.investor":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hdfcclife.activities":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"us.zoom.videomeetings":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.hdfc.smarthub":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.boi.investor":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.cgv.cinema.vn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.dexprotector.detector.envchecks":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.uzpsb.olam":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.blockchainvault":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"chunqiu.safe.detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"wu.Rookie.Detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.ap.asiapay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"app.baly.passenger":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.ofss.digx.mobile.android.allied":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"invo8.meezan.mb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.pitb.ePayGateway":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":[],"applyPresets":[],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.techlogix.mobilinkcustomer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.google.android.apps.playconsole":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.surfshark.vpnclient.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.yubico.yubioath":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"pk.gov.nadra.pakid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.telenor.pakistan.mytelenor":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.jazz.jazzworld":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.govpk.citizensportal":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.vng.mf.uamo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"xyz.be.customer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.ngame.allstar.eu":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"hr.asseco.android.intesa.isbd.cib":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.DB.playinstore":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.etisalat.flous":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"cris.org.in.ress":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"at.persie0.root_detection_app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.dcb":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.fkjc.zcro":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"in.org.npci.upiapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"in.jfs.jiofinance":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.naviapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.hdfcbank.payzapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.popclub.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.adityabirlacapitaldigital.OneApp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.myairtelapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","org.telegram.messenger","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.postpe.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.grofers.customerapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.flipkart.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"in.indwealth":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.kreditpe.android.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.uvnv.mintsim":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.mobikwik_new":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.jio.myjio":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.phonepe.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.shriram.one":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"indwin.c3.shareapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"money.super.payments":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.twid.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.canarabhim.upiapp.mobility":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":true,"hideSystemInstallationSource":true,"excludeTargetInstallationSource":true,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.kbzbank.kpaycustomer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector"],"extraOppositeAppList":[]},"com.ubercab.fleet":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.rekoo.pubgm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.zhenxi.hunter","com.byxiaorun.detector","io.github.lsposed.disableflagsecure","io.github.vvb2060.mahoshojo","io.liankong.riskdetector","io.github.rabehx.securify","com.thend.integritychecker","bin.mt.plus.canary","com.android.nativetest","icu.nullptr.nativetest","com.coderstory.toolkit","com.sukisu.ultra","com.tencent.docs","me.garfieldhan.holmes","com.github.capntrips.kernelflasher","com.reveny.nativecheck","gr.nikolasspyr.integritycheck","io.github.chsbuffer.revancedxposed","com.my.televip","io.github.vvb2060.keyattestation","com.henrikherzig.playintegritychecker","krypton.tbsafetychecker","com.youhu.laifu","com.tsng.applistdetector","com.kikyps.crackme","com.jc","io.github.a13e300.ksuwebui","io.github.huskydg.memorydetector","com.godevelopers.OprekCek","id.my.pjm.qbcd_okr_dvii","luna.safe.luna","me.yuri.ok","icu.nullptr.nativetext","com.tsng.hidemyapplist","com.zrt.xposed","xzr.hkf","com.android.shell","com.dergoogler.mmrl","com.dergoogler.mmrl.wx","com.aurora.store.nightly","io.github.vvb2060.magisk","com.luckyzyx.luckytool","com.topjohnwu.magisk","com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.teamviewer.quicksupport.market","com.teamviewer.teamviewer.market.mobile","icu.nullptr.applistdetector","com.omarea.vtools","com.cloudflare.onedotonedotonedotone","bin.mt.plus","me.weishu.kernelsu","gvbtcl.yubbjm.qajtjy","tsfvdj.xiwtkz.wuhyrv","com.android.kernel","com.rem01gaming.disclosure","org.frknkrc44.hma_oss","eu.thedarken.sdm","eu.darken.sdmse","moe.shizuku.privileged.api","com.termux","com.thor.nonroot","com.pyshivam.geergit","top.ltfan.notdeveloper","ru.zdevs.zarchiver","com.modaov.unlock60fps","org.matrix.demo","com.aorus.extr","com.rcmiku.payload.dumper.compose","wu.Zygisk.Detector","com.suqi8.oshin","com.owopdopkmd.wzarcdtfv","com.abc.abc","com.gearup.booster","com.cn.MaxCheatGL","com.community.oneroom","com.movieshubinpire.android","app.netmirror.netmirrornew","com.jrzheng.supervpnfree","org.telegram.messenger.web","com.mx.thorcheat","org.telegram.messenger","com.gmail.heagoo.apkeditor.pro","com.apkpure.aegon","com.adguard.android","com.twofasapp","me.yourbay.airfrozen","com.onesports.score","com.apowersoft.mirror","com.applisto.appcloner","com.truedevelopersstudio.automatictap.autoclicker","com.hecorat.screenrecorder.free","com.py.cloneapp.huawei","com.fitifyworkouts.bodyweight.workoutapp","eu.livesport.FlashScore_com","idm.internet.download.manager.plus","org.lsposed.manager","com.mbcp.helper","eu.thedarken.sdm.unlocker","p.gfgxk.dn","com.aorus.arbr","com.expressvpn.vpn","com.huawo.hawofit","popup.toast","com.scottyab.rootbeer.sample","org.telegram.plus","tw.nekomimi.nekogram","com.binance.dev","org.circleai","com.meowna.keybox","io.github.vvb2060.extractor","tk.yunus.hexeditor","com.meowna","com.twitter.android","com.abdurazaaqmohammed.AntiSplit","flar2.devcheck","bin.mt.termex","i.qlm","com.dexprotector.detector.envchecks","me.itejo443.bindhosts","com.android.preconditions.cts","com.studio.duckdetector","secure.unblock.unlimited.proxy.snap.hotspot.shield","kiwivpn.connectip.ipchanger.unblocksites","me.bmax.apatch","com.tempmail","com.houvven.oplusupdater","com.c.cn","tq.tech.Fpsfree","com.aide.ui","com.idragoncheats.studiopro","com.sand.remotesupportaddon","com.apkcombo.app","top.niunaijun.blackdexa64","gg.now.billing.service2","com.n0n3m4.droidc","com.catsmoker.app","kentos.loader","sami.pro.keyboard.free","com.discord","com.amanyt.tool","flix.com.vision","com.n0n3m4.gcc4droid","me.garfieldhan.attestation","com.happymod.apk","hd.camera","com.myprog.hexedit","com.t2.AvailoHader","cc.honista.app","net.maxters.droid.playi","io.github.a13e300.tricky_store","com.mantle.verify","com.lizardCheatsBGMI","com.lagofast.mobile.acclerater","com.nexstreaming.app.kinemasterfree","com.redfoxpro.iqcars","com.mapswithme.maps.pro","com.mf.file","A.jie.recordscreen","com.bizi.kernel","com.mt.isl.mpos.android.zainirq","com.matrixhax.myapplication","sa.gov.nic.myid","me.ninjagram.messenger","com.noping.gaming.vpn","com.nr.app","iq.oodi.com","com.osn.go","com.lbe.parallel.intl","com.sand.airdroidkidp","com.linux.permissionmanager","inc.trilokia.pubgfxtool.free","inc.trilokia.pubgfxtool","com.deveem.private.browser","com.mycompany.myapp","com.android.vending.billing.InAppBillingService.BINN","com.foxylab.airfox","com.flinkapps.safteynet","wu.Rookie.Detector","com.carriez.flutter_hbb","cnjkkx.usrmav.elfwth","co.solovpn","com.snapchat.android","com.sigma_rt.tcg","com.teamviewer.quicksupport.addon.universal","com.zoogvpn.android","com.PUBGDCL.kernel","com.BYemil","com.factum.nonpenitet","com.tencent.igce","themeworld.zte.nubia.red.magic8.magic9.ztenubiaredmagic8walls.launcher.theme","video.player.videoplayer","com.xe.currency","com.changpeng.instafilter","com.android.kpro","app.jumpjumpvpn.jumpjumpvpn","com.kbzbank.kpaycustomer","com.netflix.NGP.Kamo","com.facepunch.rust.companion","nchiyc.mpbmou.dionhs","com.x.wolfxradar","cuuca.sendfiles.Activity","chunqiu.safe.detector","com.handmark.expressweather","com.cybercat.acbridge","org.adblockplus.adblockplussbrowser","de.szalkowski.activitylauncher","com.anu.developers3k.rootchecker","com.htetznaing.adbotg","org.adaway","com.sec.android.app.sbrowser.webapk.w5bf26fddbe250ca726aa0479178923c91","com.example.androidzonews","dev.dworks.apps.anexplorer.free","dev.dworks.apps.anexplorer.pro","com.apk.editor","com.proapk.apk.installer","com.apkgetter","com.lb.app_manager","io.github.muntashirakon.AppManager","rk.android.app.appbar","com.apkmirror.helper.prod","com.a0soft.gphone.app2sd.pro","com.valhalla.bolt","eu.sisik.hackendebug","eu.sisik.hackendebug.full","com.lemon.lvoverseas","com.vishtekstudios.deviceinfo","org.aospstudio.devoptions","jp.co.bii.android.app.dskvzr","com.domka.theme.iconpack","com.sweetappproivders.setdpi","ru.niqhhfkq.iloqdyaeh","com.chornerman.easydpichanger","org.fdroid.fdroid","com.rom2box.fw_manager","com.flightradar24free","com.natewren.flight","com.samsung.android.heartplugin","com.samsung.android.app.watchmanager","com.androradar.livewallsg2","com.androradar.livewallsg3","com.androradar.livewallsg4","com.androradar.livewallsg9","com.androradar.livewallsg5","com.androradar.livewallsg6","com.androradar.livewallsg7","com.androradar.livewallsg8","com.androradar.livewallsg10","com.androradar.livewallsg16","com.pixsterstudio.gifmaker_editor_photo_gif_video","video.to.gif.maker","com.bk.videotogif","com.mike.gifmaker","gifmaker.gifcreator.gifeditor","com.monotype.android.font.kapp.custom_1714429462","com.csdeveloper.imgconverterpro","ru.tech.imageresizershrinker","com.spaceship.screen.textcopy","com.akbon.ios","cn.sealili.icons","co.livesatelliteview","com.screensavers_store.matrixlivewallpaper","mega.privacy.android.app","com.vpnbottle.melon.free.unblock.fast.vpn","com.mixplorer","com.mixplorer.beta","ru.gavrikov.mocklocations","com.hrd.motivation","com.motorola.wallpaper.parallaa","com.mxtech.videoplayer.ae","com.mxtech.videoplayer.pro","com.andatsoft.myapk.fwa","com.machiav3lli.fdroid","com.livewallpaper.opace5proBlack","ostrsf.ijmoeu.uircnu","in.pyshivam.clearappdata","com.ytheekshana.deviceinfo","ru.andr7e.deviceinfohw","com.fantasytat.det","me.yuki.folk","com.jazibkhan.equalizer","ropl.momo.item","me.neko.fckvip","com.secure.unblock.unlimited.proxy.vpnuk","free.vpnindia.unlimited.fast.secure.proxy.turbo","at.austriao.fake_gps_detector_app","com.fkjc.zcro","io.github.jqssun.gpssetter","ydyqb.kfqdjcxrr.b.s","com.android.lc","com.lizardCheats","com.accarunit.motionvideoeditor","app.greyshirts.firewall","yqheks.hcfaem.elmxyb","com.niksoftware.snapseed","dev.hexasoftware.v2box","com.resukisu.resukisu","io.ngankbakaa.lineage.detector","com.chuqniudetector","com.pyshivam.gplaylicense","com.aegis.apps","com.hydraultra.ipultrabox","com.hdobox.mudx","com.mediaon.apt","app.revanced.android.gms","pwyhpv.lkbxsq.opdmmq","com.security.xvpn.z35kb"],"extraOppositeAppList":[]},"com.studiowildcard.arkuse":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.fairplayshield.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":true,"hideSystemInstallationSource":true,"excludeTargetInstallationSource":true,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[1015,1023,1032,1077,1078,1079,3003,9997],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.microsoft.emmx":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["xuet.ahwmyctnhgbgf","bin.mt.plus","org.frknkrc44.hma_oss","com.mcdonalds.mobileapp","com.android.shell","org.akanework.checker"],"extraOppositeAppList":[]},"org.mozilla.firefox":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["xuet.ahwmyctnhgbgf","bin.mt.plus","org.frknkrc44.hma_oss","com.mcdonalds.mobileapp","com.android.shell","org.akanework.checker"],"extraOppositeAppList":[]},"com.linkedin.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.booking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ee.mtakso.driver":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"wu.keyChain.test":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.chuqniudetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.luckyzyx.luckytool"],"extraOppositeAppList":[]},"com.grubhub.driver":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.jqssun.gpssetter","com.github.thepiemonster.hidemocklocation","io.github.auag0.hidemocklocation","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui"],"extraOppositeAppList":[]},"de.markusfisch.android.binaryeye":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.shipt.shopper":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.waze":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.levelinfinite.sgameGlobal":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.mada.madapay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.instacart.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.kasikornbank.kplus.vn":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":true,"hideSystemInstallationSource":true,"excludeTargetInstallationSource":true,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"yqtrack.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.qihoo.smarthome":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.wuba.wbdaojia":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.wuba":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"sksa.aa.customapps":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"app.aawireless":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.abacusbank.imobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"gov.nyc.hra.SelfService":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.adobe.reader":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.aftership.AfterShip":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.autonavi.minimap":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.amazon.mShop.android.shopping":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.huawei.appmarket":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.backcn.ss":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.input":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.bitcoin.mwallet":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.huawei.browser":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.emn8.mobilem8.nativeapp.bk":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"maps.jaoloonda.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.press.matk":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.cathaybank4153.mobile.production":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"cn.cgmcare.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.chase.sig.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.chinamworld.main":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ct.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.chinapost.webapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.chrome.dev":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.citizensbank.androidapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.coned.conedison":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.coolapk.market":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.costco.app.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.hungrypanda.waimai.staffnew":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"flar2.devcheck":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dhl.exp.dhlmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dianping.v1":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.sdu.didi.psnger":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.msi.msigdragondashboard2":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dunkinbrands.otgo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ebay.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.fis.ebtedge":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"me.ele":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"epson.print":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.epson.epsonsmart":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.juanvision.EseeNetProj":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.eliteextra.driver":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.fedex.ida.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.vidure.fitcamx":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.geico.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.google.android.gm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.google.android.apps.nbu.paisa.user":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.nordcurrent.happyclinicf2p":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.solutran.otc":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.here.app.maps":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.huawei.hwid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.thehomedepot":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.hp.printercontrol":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.hungrypanda.waimai":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.hypershell.hypershell":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.iparkapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.react_viphealth":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"sharefiles.sharemusic.shareapps.filetransfer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.iqiyi.i18n":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.jingdong.app.mall":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.jetappfactory.jetaudio":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.jobtoday.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.github.capntrips.kernelflasher":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.example.kinginstaller":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.onion.one":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.lexus.oneapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tmcc.click2pay.mylfs":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.lexus.lexusalexa":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.weedle.lg_ac_remotes":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.cisco.connect.cloud":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.payfare.lyft":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.lyft.android.driver":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.sankuai.meituan":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"net.sharewire.meterUP":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.optimum.cma.prod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"epic.mychart.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ifactor.ngrid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.netease.cloudmusic":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.newegg.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"gov.nyc.doitt.ThreeOneOne":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.opera.branding.news":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.incomm.otc":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.spplus.parking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"net.sharewire.Nycdot":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dof.mpts.prod":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.mobileqq":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.MobileTicket":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"moe.shizuku.privileged.api":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.instacart.shopper":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"rk.android.app.shortcutmaker":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tmobile.tuesdays":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"org.telegram.messenger.web":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.termux":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ticketwipercorp.ticketwiper":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.conduent.ezpass":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ss.android.article.news":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.thetransitapp.droid":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ups.mobile.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.usps.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.vmall.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.walmart.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.weather.forecast.weatherchannel":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.gof.global":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.workwhilejobs.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tratao.xcurrency":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.xoom.android.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.zillow.android.zillowmap":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.youavideo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"org.jutuina.com.tuinapro":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.yxonsite.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.greenpoint.android.mc10086.activity":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.sinovatech.unicom.ui":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"cn.beekee.zhongtong":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.jingdong.pdj":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.android.daoway":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"tv.danmaku.bili":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ximalaya.ting.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.yangchong.shangmenanmo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tmall.wireless":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.quark.browser":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.vst.live":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.android.qqdownloader":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"kangyue.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.syyh.deviceinfo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.twototwo.massage":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"ctrip.android.view":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.luna.music":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dz.hmjc":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.taobao.taobao":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.tmgp.sgame":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.dragon.read":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.xs.fm":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.carlife":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.BaiduMap":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.netdisk":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.baidu.tieba":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.zhihu.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.phoenix.read":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.youdao.dict":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.sankuai.meituan.takeoutnew":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.map":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.news":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.tencent.qqlive":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.duowan.kiwi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.ss.android.article.video":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.qidian.QDReader":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.kugou.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.taobao.idlefish":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.alibaba.wireless":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.sf.activity":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.moji.mjweather":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.google.android.apps.cloudconsole":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.xiaomi.mitv.phone.tvassistant":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.mi.healthresearch":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["oj.jglv.wblgy.cwzh","org.frknkrc44.hma_oss","com.topmiaohan.superlist"],"extraOppositeAppList":[]},"com.google.android.apps.messaging":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.whizdm.moneyview.loans":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.vnpay.hdbank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":[],"extraOppositeAppList":[]},"com.hdbank.dihdbank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.bancodebogota.bancamovil":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.fisglobal.esafupi.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.euronet.iobupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.lcode.smartz":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.bankofbaroda.upi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.canarabank.mobility":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.anthropic.claude":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.dreamplug.androidapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.yield.curie_money":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.epifi.paisa":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.freecharge.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.moneytap.bnpl.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"money.jupiter":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.kreditbee.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.lxme":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.paynearby.saathi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.tatadigital.tcp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.npst.timepay.society":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"cards.uni.app.credit":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.kikyps.crackme","com.test.detectz","dev.sdex.idv2","com.studio.duckdetector","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.auag0.hidemocklocation","me.garfieldhan.holmes","com.zhenxi.hunter","com.m0dulePro.xinoShell","bin.mt.plus.canary","com.reveny.nativecheck","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","com.byxiaorun.detector","sgdxnu.chhdye.kmveuy","com.koushikdutta.vysor","wu.Zygisk.Detector","com.android.shell"],"extraOppositeAppList":[]},"com.yesbank.yespaynext":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.airbnb.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.bunq.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"ca.koho":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.mexcpro.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.rbc.mobile.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.questrade.questmobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.boursorama.android.clients":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.td":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.wealthsimple.trade":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","io.github.lsposed.disableflagsecure","org.frknkrc44.hma_oss","io.github.a13e300.ksuwebui","bin.mt.plus","org.telegram.messenger","j.crkh","com.android.shell"],"extraOppositeAppList":[]},"com.aircall":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.bankera.wallet":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.bbva.bbvacontigo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.bitget.exchange":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.bitsacard.BitsaApp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.x8bit.bitwarden":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.papaya.blackcatcard":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.genome.app.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"eu.mobile.icard":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.myfin_demo":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"app.neosurf.NeosurfM":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.payoneer.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.passport.cash":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.zen.application":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.thexjxgduwoh.holppkukkufjbtu","org.amnezia.vpn","com.anydesk.anydeskandroid","com.applisto.appcloner","io.github.muntashirakon.AppManager","com.tsng.applistdetector","com.defragd3m0n.cashappsoftresetids","com.piriform.ccleaner","com.py.cloneapp.huawei","com.sunilpaulmathew.debloater","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","com.rem01gaming.disclosure","com.okirat.dnsmanager.pro","ru.otdr.deviceinfo","com.androidfung.drminfo","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","de.gmx.mobile.android.mail","com.freemium.android.apps.gps.coordinates","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.auag0.imnotadeveloper","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","com.mapswithme.maps.pro","com.diwa.detector.mock","com.godevelopers.mockinfo","io.github.vvb2060.mahoshojo","io.github.auag0.mocklocationdetector","bin.mt.plus","com.obbedcode.mydevids","com.digrasoft.mygpslocation","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","com.godevelopers.OprekCek","me.hoshino.novpndetect","org.proxydroid","net.xnano.android.photoexifeditor.pro","gr.nikolasspyr.integritycheck","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.google.android.safetycore","top.canyie.settingsfirewall","pl.moniusoft.showmyip","com.henrikherzig.playintegritychecker","net.typeblog.socks","com.scheler.superproxy","org.zwanoo.android.speedtest","org.swiftapps.swiftbackup","com.vitaodoidao.vdinfos","com.telegram.a1064","com.vmos.pro","com.ttxapps.wifiadb","com.lonelycatgames.Xplore","id.my.pjm.qbcd_okr_dvii","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","dz.orzzsttlunbkj","com.jhc.detach"],"extraOppositeAppList":[]},"com.barclays.android.barclaysmobilebanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ro.btrl.pay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","org.amnezia.vpn","com.thexjxgduwoh.holppkukkufjbtu","com.anydesk.anydeskandroid","com.applisto.appcloner","com.tsng.applistdetector","com.sunilpaulmathew.debloater","com.py.cloneapp.huawei","com.piriform.ccleaner","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","ru.otdr.deviceinfo","com.androidfung.drminfo","com.okirat.dnsmanager.pro","com.studio.duckdetector","com.rem01gaming.disclosure","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.pyshivam.geergit","com.kikyps.crackme","com.pyshivam.gplaylicense","com.freemium.android.apps.gps.coordinates","com.android1500.gpssetter","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","io.github.vvb2060.mahoshojo","bin.mt.plus","com.obbedcode.mydevids","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","me.hoshino.novpndetect","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","net.xnano.android.photoexifeditor.pro","org.proxydroid","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.byxiaorun.detector","io.github.rabehx.securify","pl.moniusoft.showmyip","net.typeblog.socks","com.henrikherzig.playintegritychecker","com.scheler.superproxy","org.swiftapps.swiftbackup","com.lonelycatgames.Xplore","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","id.my.pjm.qbcd_okr_dvii","dz.orzzsttlunbkj","com.jhc.detach","com.telegram.a1064","com.defragd3m0n.cashappsoftresetids","com.android.shell"],"extraOppositeAppList":[]},"de.number26.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","org.amnezia.vpn","com.thexjxgduwoh.holppkukkufjbtu","com.anydesk.anydeskandroid","com.applisto.appcloner","com.tsng.applistdetector","com.sunilpaulmathew.debloater","com.py.cloneapp.huawei","com.piriform.ccleaner","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","ru.otdr.deviceinfo","com.androidfung.drminfo","com.okirat.dnsmanager.pro","com.studio.duckdetector","com.rem01gaming.disclosure","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.pyshivam.geergit","com.kikyps.crackme","com.pyshivam.gplaylicense","com.freemium.android.apps.gps.coordinates","com.android1500.gpssetter","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","io.github.vvb2060.mahoshojo","bin.mt.plus","com.obbedcode.mydevids","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","me.hoshino.novpndetect","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","net.xnano.android.photoexifeditor.pro","org.proxydroid","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.byxiaorun.detector","io.github.rabehx.securify","pl.moniusoft.showmyip","net.typeblog.socks","com.henrikherzig.playintegritychecker","com.scheler.superproxy","org.swiftapps.swiftbackup","com.lonelycatgames.Xplore","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","id.my.pjm.qbcd_okr_dvii","dz.orzzsttlunbkj","com.jhc.detach","com.telegram.a1064","com.defragd3m0n.cashappsoftresetids","com.android.shell"],"extraOppositeAppList":[]},"com.starlingbank.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.starlink.mobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","org.amnezia.vpn","com.thexjxgduwoh.holppkukkufjbtu","com.anydesk.anydeskandroid","com.applisto.appcloner","com.tsng.applistdetector","com.sunilpaulmathew.debloater","com.py.cloneapp.huawei","com.piriform.ccleaner","flar2.devcheck","com.silverlabtm.app.deviceidchanger.free","ru.otdr.deviceinfo","com.androidfung.drminfo","com.okirat.dnsmanager.pro","com.studio.duckdetector","com.rem01gaming.disclosure","io.github.lsposed.disableflagsecure","com.dexprotector.detector.envchecks","com.fingerprintjs.android.fpjs_pro_demo","com.pyshivam.geergit","com.kikyps.crackme","com.pyshivam.gplaylicense","com.freemium.android.apps.gps.coordinates","com.android1500.gpssetter","com.defragd3m0n.hiddenproxy","org.frknkrc44.hma_oss","me.garfieldhan.holmes","com.zhenxi.hunter","com.catchingnow.icebox","io.github.vvb2060.keyattestation","com.google.android.contactkeys","io.github.a13e300.ksuwebui","luna.safe.luna","io.github.vvb2060.mahoshojo","bin.mt.plus","com.obbedcode.mydevids","com.reveny.nativecheck","icu.nullptr.nativetest","com.machiav3lli.backup","me.hoshino.novpndetect","com.godevelopers.OprekCek","gr.nikolasspyr.integritycheck","net.xnano.android.photoexifeditor.pro","org.proxydroid","io.liankong.riskdetector","com.scottyab.rootbeer.sample","com.byxiaorun.detector","io.github.rabehx.securify","pl.moniusoft.showmyip","net.typeblog.socks","com.henrikherzig.playintegritychecker","com.scheler.superproxy","org.swiftapps.swiftbackup","com.lonelycatgames.Xplore","com.defragd3m0n.uniqueizationofphone","eu.faircode.xlua","id.my.pjm.qbcd_okr_dvii","dz.orzzsttlunbkj","com.jhc.detach","com.telegram.a1064","com.defragd3m0n.cashappsoftresetids","com.android.shell"],"extraOppositeAppList":[]},"com.distribute.socket":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"in.swiggy.android.instamart":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.chunqiunativecheck":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.chunqiudetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.eltavine.duckdetector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["vygrrm.vxqxph.rftzrh"],"extraOppositeAppList":[]},"com.mantle.verify":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.snapchat.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.ss.android.ugc.trill":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"net.gsm.driver.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"ag.jup.jupiter.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.byxiaorun.detector":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.logistics.rider.hungerstation":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"net.jahez.fleets":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.anycheck.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.msf.bfsltrade":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.aubank.aupay.bhimupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.lcode.csbupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.lcode.dlbupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.jandk.upi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.mgs.pnbupi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.bigbasket.mobileapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.block.juggle":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.grofers.customerapp.lit":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.romreviewer.bombitup":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.bubbleshooter.popbubbles.collectcards":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.king.candycrushsaga":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.indiaBulls":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.google.android.apps.subscriptions.red":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.gyftr":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.excean.parallelspace":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"ai.perplexity.app.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"in.sarvatra.zilasahkaribanktehri.mobilebanking":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.vitastudio.mahjong":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.zeptoconsumerapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"com.application.zomato":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":[],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","dev.sdex.idv2","com.studio.duckdetector","org.frknkrc44.hma_oss","xzr.hkf","com.zhenxi.hunter","bin.mt.plus.canary","gr.nikolasspyr.integritycheck","wputfi.fssouk.uvksus","com.XinoShell.m0dule","com.android.shell"],"extraOppositeAppList":[]},"co.tide.tideplatform.eu":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.chase.intl":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"eu.mobile.mypos":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.rbs.mobile.android.natwest":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.rbs.mobile.android.rbs":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.tapngo.tap":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"uk.co.tsb.newmobilebank":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.anna.money.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.cot.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.afterpaymobile.uk":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.countingup.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.imaginecurve.curve.prd":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.etoro.openbook":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.myklarnamobile":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.kraken.pay.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.bsocial":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.checkfer.lopaymerchant":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"uk.co.mettle.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"uk.co.metrobankonline.mobile.android.production":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.moneybookers.skrillpayments.neteller":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.pockit.mobile.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.remitly.androidapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.revolut.revolutx":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.kaching.merchant":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.terminalpay":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.teya.ac":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.zhiliaoapp.musically":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.virginmoney.uk.mobile.android":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.vivawallet.business":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"co.uk.mycashplus.maapp":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1"],"extraOppositeAppList":[]},"com.sbi.upi":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.kubi.kucoin":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"in.amazon.mShop.android.shopping":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.google.android.apps.chromecast.app":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.anydesk.adcontrol.ad1","com.anydesk.anydeskandroid","com.brave.browser","com.pyshivam.geergit","com.android1500.gpssetter","bin.mt.plus.canary","hhavvf.nzryij.jvpqqg","net.typeblog.socks","org.telegram.messenger.web","org.frknkrc44.hma_oss","com.google.android.apps.maps","com.android.chrome","com.google.android.googlequicksearchbox"],"extraOppositeAppList":[]},"com.agoda.mobile.consumer":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.thend.integritychecker":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"ee.mtakso.client":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.bsc.mobiletrading":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":["com.cloudflare.onedotonedotonedotone","com.modaov.unlock60fps","com.anydesk.adcontrol.ad1","com.anycheck.app","com.anydesk.anydeskandroid","com.apkpure.aegon","com.tsng.applistdetector","cm.aptoide.pt","com.aurora.store","com.awesun.remote","in.pyshivam.clearappdata","com.chunqiunativecheck","com.coinex.trade.play","com.cpuid.cpu_z","com.coderstory.toolkit","com.coccoc.trinhduyet","com.detect.rooted.apps","flar2.devcheck","tw.reh.deviceid","ru.andr7e.deviceinfohw","com.rem01gaming.disclosure","com.eltavine.duckdetector","com.studio.duckdetector","io.github.lsposed.disableflagsecure","com.microsoft.emmx","com.fantasytat.det","at.austriao.fake_gps_detector_app","com.facebook.katana","org.mozilla.firefox","com.fkjc.zcro","me.yuki.folk","me.neko.fckvip","io.github.a13e300.fusefixer","wu.futiletest","com.kikyps.crackme","com.pyshivam.geergit","com.pyshivam.gplaylicense","com.google.android.googlequicksearchbox","me.garfieldhan.holmes","org.frknkrc44.hma_oss","com.zhenxi.hunter","ru.tech.imageresizershrinker","com.gsmcenter.imeiinfo","com.yuuki.inject_detect","com.rosan.installer.x.revived","com.panpandada.ios26.free","ag.jup.jupiter.android","com.github.capntrips.kernelflasher","io.github.vvb2060.keyattestation","com.meowna.keybox","kiwivpn.connectip.ipchanger.unblocksites","com.juanma0511.rootdetector.debug","kling.ai.video.chat","io.ngankbakaa.lineage.detector","ropl.momo.item","com.luckyzyx.luckytool","luna.safe.luna","com.mantle","com.mantle.cad","com.mantle.verify","io.metamask","io.github.vvb2060.mahoshojo","bin.mt.plus.canary","bin.mt.plus","com.reveny.nativecheck","icu.nullptr.nativetest","com.nordvpn.android","com.okinc.okex.gp","com.orca.position","com.rcmiku.payload.dumper.compose","app.phantom","com.freevpnplanet","gr.nikolasspyr.integritycheck","com.kblack.demo_play_integrity_api","io.github.mhmrdd.libxposed.ps.passit","org.telegram.plus","ch.protonvpn.android","com.teamviewer.quicksupport.market","qccknq.hdlfxy.elkfbb","io.github.chsbuffer.revancedxposed","paehnoo.qgba","io.liankong.riskdetector","rp.rkp","at.persie0.root_detection_app","dev.probe.roottest","com.byxiaorun.detector","com.carriez.flutter_hbb","moe.shizuku.privileged.api","com.henrikherzig.playintegritychecker","com.src.module","com.my.televip","com.termux","com.coloros.deeptesting","com.wallet.crypto.trustapp","com.UCMobile","com.xver.app","com.telegram.a1064","com.secure.unblock.unlimited.proxy.vpnuk","com.free.vpn.india.proxy.planet","com.googlevibe.nicevibematchman","id.my.pjm.qbcd_okr_dvii","io.github.nkr00711.xviphook","com.deniscerri.ytdl","com.anatdx.yukisu","ru.zdevs.zarchiver","wu.Zygisk.Detector","com.cq.detector","com.android.shell"],"extraOppositeAppList":[]},"com.deliverynow":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]},"com.logistics.rider.talabat":{"useWhitelist":false,"excludeSystemApps":true,"hideInstallationSource":false,"hideSystemInstallationSource":false,"excludeTargetInstallationSource":false,"invertActivityLaunchProtection":false,"excludeVoldIsolation":false,"restrictedZygotePermissions":[],"applyTemplates":["HIDE MY CUSTOM APP"],"applyPresets":["accessibility_apps","custom_rom","detector_apps","root_apps","shizuku_dhizuku","sus_apps","xposed"],"applySettingTemplates":[],"applySettingsPresets":["accessibility","dev_options","input_method"],"extraAppList":[],"extraOppositeAppList":[]}}} ================================================ FILE: doc/README_ja-JP.md ================================================ # YuriKey ![Artifacts](/doc/banner.webp) [![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/yuriiroot) [![latest release](https://img.shields.io/github/v/release/Yurii0307/yurikey?label=Release&logo=github)](https://github.com/Yurii0307/yurikey/releases/latest) [![CI](https://github.com/Yurii0307/yurikey/actions/workflows/build.yml/badge.svg)](https://github.com/Yurii0307/yurikey/actions/workflows/build.yml) ![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/Yurii0307/yurikey/total) [![Crowdin](https://badges.crowdin.net/yurikey/localized.svg)](https://crowdin.com/project/yurikey) Strong Integrity の取得を簡単に実現する Systemless モジュール [Crowdin](https://crwd.in/yurikey/16ffbcb2d7926491c764b48a99bc06c52742324) [ダウンロード](https://github.com/Yurii0307/yurikey/releases/latest) [更新履歴](https://raw.githubusercontent.com/Yurii0307/yurikey/main/changelog.md) Telegram グループ/チャンネル: https://t.me/yuriiroot https://t.me/yurichattt https://t.me/yuriiarchives https://t.me/yurikernel ## どうすれば Strong Integrity を取得できますか? - [Play Integrity Inject](https://github.com/KOWX712/PlayIntegrityFix/releases/latest) または [Play Integrity Fork](https://github.com/osm0sis/PlayIntegrityFork/releases/latest) をインストールしてください - [Tricky Store](https://github.com/5ec1cff/TrickyStore/releases/latest) をインストールしてください - [Yurikey Manager](https://github.com/Yurii0307/yurikey/releases/latest) を root マネージャーにインストールしてください (Magisk/Apatch/KernelSU/KernelSU のフォーク) - アクションボタンを押してください ## ⚠️注意 > [!NOTE] > > action.sh またはモジュールのインストール時にエラーが発生した場合は、以下のモジュールをインストールする必要があるかもしれません。 > > > `"ERROR: Tricky Store module not found!"` が表示された場合: > [Tricky Store](https://github.com/5ec1cff/TrickyStore/releases/latest) > > `"ERROR: Keybox updated failed!"` が表示された場合: > [BusyBox](https://mmrl.dev/repository/grdoglgmr/busybox-ndk) ## 貢献者 [Yuri](https://github.com/Yurii0307) [Tam](https://github.com/Tam97123) [yourbestregard](https://github.com/yourbestregard) [cvnertnc](https://github.com/cvnertnc) [ZG089](https://github.com/ZG089) [Munch](https://github.com/SudoNothing404) [Wes](https://github.com/ihatenodejs) [Khx](https://github.com/dpejoh) ================================================ FILE: key ================================================ PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxBbmRyb2lkQXR0ZXN0YXRpb24+CjxOdW1iZXJPZktleWJveGVzPjE8L051bWJlck9mS2V5Ym94ZXM+CjxLZXlib3ggRGV2aWNlSUQ9Ill1cmlrZXk1MC4gSm9pbiBteSBncm91cDogdC5tZS95dXJpaXJvb3QiPgo8S2V5IGFsZ29yaXRobT0iZWNkc2EiPgo8UHJpdmF0ZUtleSBmb3JtYXQ9InBlbSI+Ci0tLS0tQkVHSU4gRUMgUFJJVkFURSBLRVktLS0tLQpNSGNDQVFFRUlEWWxjM0ViOUJHWklETWh5bmdwanJyQStoSEE3citMN0VkNFlIOFoxKzd5b0FvR0NDcUdTTTQ5CkF3RUhvVVFEUWdBRTI5RjFMWGdGRGoxWEZHUEt1L2ZSK1V4Y2Q3b0ZEb04zZzc3MGYwZXo3NUVta3NzdzRwaDkKdUx1ZkVnSS9SRTJ6RFdDTTdTeWtmaitJWEdRR3FpaUxjQT09Ci0tLS0tRU5EIEVDIFBSSVZBVEUgS0VZLS0tLS0KPC9Qcml2YXRlS2V5Pgo8Q2VydGlmaWNhdGVDaGFpbj4KPE51bWJlck9mQ2VydGlmaWNhdGVzPjM8L051bWJlck9mQ2VydGlmaWNhdGVzPgo8Q2VydGlmaWNhdGUgZm9ybWF0PSJwZW0iPgotLS0tLUJFR0lOIENFUlRJRklDQVRFLS0tLS0KTUlJQjlEQ0NBWG1nQXdJQkFnSVFSZ1ljQ2k0TVBvZ2t0Sk8xRnI5RVBEQUtCZ2dxaGtqT1BRUURBakE1TVF3dwpDZ1lEVlFRTURBTlVSVVV4S1RBbkJnTlZCQVVUSURkaU16VTBPV1ptWW1ReU9HVTBNMk5tTkRaaVptTmpaakJpCk1UVTNPRFF4TUI0WERUSTBNRGN4TWpJeE16YzBOVm9YRFRNME1EY3hNREl4TXpjME5Wb3dPVEVNTUFvR0ExVUUKREF3RFZFVkZNU2t3SndZRFZRUUZFeUF4TVdNMk5XUmpZMlkyTWpCak5URXhPV1JpTkdaak5tRmpabUkzWTJSaApPREJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTnZSZFMxNEJRNDlWeFJqeXJ2MzBmbE1YSGU2CkJRNkRkNE8rOUg5SHMrK1JKcExMTU9LWWZiaTdueElDUDBSTnN3MWdqTzBzcEg0L2lGeGtCcW9vaTNDall6QmgKTUIwR0ExVWREZ1FXQkJRUXFIbVpPYWV5b01LVWI0UTVZeVhTN0RZcGZUQWZCZ05WSFNNRUdEQVdnQlJGUTAvVApYbVU4Y2J5dkM5L1NURE5SVXY3RVFEQVBCZ05WSFJNQkFmOEVCVEFEQVFIL01BNEdBMVVkRHdFQi93UUVBd0lDCkJEQUtCZ2dxaGtqT1BRUURBZ05wQURCbUFqRUF3SWczcURsNEgzQmRZaGpYYUZZRy9nQnZiSmh4cTc0N1plZ1cKc1ZUbzJORWhTNHErcG1UVy9TaTlWaW54MUFOZkFqRUEwYS9OMERJdkNSOGJJcFNvYzFvUUgvS1hVSFVmNldEbApNeWErZ1pSWldXNE5HRjR4ZDgxYXFCdkFSMWtseXdGSQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCjwvQ2VydGlmaWNhdGU+CjxDZXJ0aWZpY2F0ZSBmb3JtYXQ9InBlbSI+Ci0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlEbERDQ0FYeWdBd0lCQWdJUkFPTFAvRmpzYUtqYjNuL1NlYUxmT0Q0d0RRWUpLb1pJaHZjTkFRRUxCUUF3Ckd6RVpNQmNHQTFVRUJSTVFaamt5TURBNVpUZzFNMkkyWWpBME5UQWVGdzB5TkRBM01USXlNVE0xTkROYUZ3MHoKTkRBM01UQXlNVE0xTkROYU1Ea3hEREFLQmdOVkJBd01BMVJGUlRFcE1DY0dBMVVFQlJNZ04ySXpOVFE1Wm1aaQpaREk0WlRRelkyWTBObUptWTJObU1HSXhOVGM0TkRFd2RqQVFCZ2NxaGtqT1BRSUJCZ1VyZ1FRQUlnTmlBQVIvCmVZNmsyR2RWYUVaNDQ1NlNYUlAyTjVNRGhremllOWxweWt3OG5WczRMZ3BnUExhbVZmZXFPQ1dVTVY1UjVwTy8KRWlqMXBVNmxEVFRkU0xSL1JBQ2pQYlNGS3NMN3hsUkhUc3RLQXp0eWd2bTJSNXZRcTRFeDVSY2xmQUhBb1R5agpZekJoTUIwR0ExVWREZ1FXQkJSRlEwL1RYbVU4Y2J5dkM5L1NURE5SVXY3RVFEQWZCZ05WSFNNRUdEQVdnQlEyClllRUFmSWdGQ1ZHTFJHeEgveHBNeWVwUEVqQVBCZ05WSFJNQkFmOEVCVEFEQVFIL01BNEdBMVVkRHdFQi93UUUKQXdJQ0JEQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FnRUFST3F5YW15TExXbmdUUGdHZHd4QzZBc0V0WFk3OW9iSgp0bGhrbmZCVVd1NXJoM1FxTXdZa1dqaFRsWGk1MmR3ZXprTExybnV6TUZIaDVScnlGK1JadnliSjFHUmY5NU4yCkdSdnZkVzF4Y0pPS2NVS1RoSDhRWGEvcWh2bGh0MGZpZmZ6YXlLaHA3cFliM05JS0Z4LzFseEdFVmZzSUYrRjYKMjlUMmVmSlBObnBVclpmS0RySTlCZ2U0WHMwbGxSWTFqeVlOTDlIOVI0OFpkRyt5NXY4YVVaaDVwbkZCbkxYYgpUUjZaMWlnRFhFYVFnckJxQjNIVGlmMVJQLzFEWXlFL1JJblFPRTBXSHVqbEx1Um9nenk4Wi9tdG9MU3hTZkdwCmViTlp3Vm03ZmVGT0thbTRmdm1RbXUvZS9uT3V4WVRiMlUrRG1heUM5V2YrRmNNVUZDVm91bXhjVFp3cU9HQkoKUlVsd1JCNnUwSnJ4SVRINjNaWUF1Lzl4Tm5NVDgrSk4zNFJRVkVBR2l6c25hY09EcVU0MUtqWldPQ3dEbVUraApjSlRzclZuRjFhaEcxUjZ3R2JRUHZYVG1heDVxRWxUS3AwWThKWTBGV2RuU25taUtxZ2p1TWczdjlOZmttVEs4CkZIOEcvZnIzTHh1SEtDTVhaVDZnODNWMDN2dnhRNERSaXVUbmo1aWR2Uml2bVk5MlZuK05BTDBiZ3ZyRDdERmcKdHRZaVNqbGE2NkF4eWpwRnJOZmxOUkZQaDc3UmxnNlZtTnZTeEJub2VDaGFoTmxjUmZyaXRRVk9NYUZHRHExcwppU2FJQng2ZjN2VEpXaHNCcVRnVzNCczhqV1g3a3dlVGFEak1wWHgzTUYybXRyK3Q4UXhJSzNFZ3Z1bkJETW1PCkgvUzJtbDVHbGU4PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tPC9DZXJ0aWZpY2F0ZT4KPENlcnRpZmljYXRlIGZvcm1hdD0icGVtIj4KLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZIRENDQXdTZ0F3SUJBZ0lKQVBIQmNxYVo2dlVkTUEwR0NTcUdTSWIzRFFFQkN3VUFNQnN4R1RBWEJnTlYKQkFVVEVHWTVNakF3T1dVNE5UTmlObUl3TkRVd0hoY05Nakl3TXpJd01UZ3dOelE0V2hjTk5ESXdNekUxTVRndwpOelE0V2pBYk1Sa3dGd1lEVlFRRkV4Qm1PVEl3TURsbE9EVXpZalppTURRMU1JSUNJakFOQmdrcWhraUc5dzBCCkFRRUZBQU9DQWc4QU1JSUNDZ0tDQWdFQXI3YkhnaXV4cHdIc0s3UXVpOHhVRm1Pcjc1Z3ZNc2QvZFRFRERKZFMKU3h0ZjZBbjd4eXFwUlI5MFBMMmFieE0xZEVxbFhuZjJ0cXcxTmU0WHdsNWpsUmZkbkpMbU4wcFR5LzRsajQvNwp0djBTazNpaUtreXBuRVV0UjZXZk1nSDBRWmZLSE0xK2RpK3k5VEZSdHY2eS8vMHJiK1QrVzhhOW5zTkwvZ2dqCm5hcjg2NDYxcU8wck9zMmNYanAza09HMUZFSjVNVm1GbUJHdG5yS3BhNzNYcFh5VHFSeEIvTTBuMW4vVzluR3EKQzRGU1lhMDRUNk41UklaR0JOMnoyTVQ1SUtHYkZsYkM4VXJXMER4VzdBWUltUVFjSHRHbC9tMDBRTFZXdXRIUQpvVkpZbkZQbFhUY0hZdkFTTHUrUmhoc2JEbXhNZ0pKMG1jRHB2c0M0UGp2QitUeHl3RWxnUzcwdkUwWG1MRCtPCkp0dnNCc2xIWnZQQktDT2RUME1TK3RnU09JZmdhK3oxWjFnNytEVmFnZjdxdXZtYWc4amZQaW95S3Z4bksvRWcKc1RVVmkyZ2h6cTh3bTI3dWQvbUlNN0FZMnFFT1JSOEdvM1RWQjRIeldRZ3BacnQzaTVNSWxDYVk1MDRMelNSaQppZ0hDekFQbEh3cytXMHJCNU4rZXI1LzJwSktuZkJTRGlDaUZBVnRDTE9aN2dMaU1tMGpoTzJCNnRVWEhJLytNClJQankwMmk1OWxJTk1SUmV2NTZHS3RjZDlxTy8wa1VKV2RaVGRBMlhvUzgyaXhQdlp0WFFwVXB1TDEyYWIrOUUKYURLOFo0UkhKWVlmQ1QzUTV2TkFYYWlXUSs4UFRXbTJRZ0JSL2Jrd1NXYytOcFVGZ05QTjlQdlFpOFdFZzVVbQpBR01DQXdFQUFhTmpNR0V3SFFZRFZSME9CQllFRkRaaDRRQjhpQVVKVVl0RWJFZi9Ha3pKNms4U01COEdBMVVkCkl3UVlNQmFBRkRaaDRRQjhpQVVKVVl0RWJFZi9Ha3pKNms4U01BOEdBMVVkRXdFQi93UUZNQU1CQWY4d0RnWUQKVlIwUEFRSC9CQVFEQWdJRU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQ0FRQjhjTXFUbGxIYzhVK3FDck9sZzNINwoxNzRsbWFDc2JvL2JKMEMxN0pFZ01MYjRrdnJxc1haczAxVTNtQi9xQUJnLzF0NVBkNUFPUkhBUnMxaGhxR0lDClcvbktNYXY1NzRmOXJaTjRQQzJabHVmR1hiN3NJZEpwR2lPOWN0UmhpTHVZdWx5MTBKY2NVWkdFSHBIU1lNMkcKdGtnWWJaYmE2bHNDUFlBQVA4M2N5RFYrMWFPa1RmMVJDcC9sTTBQS3ZteFlOMTBSWXNLNjMxanJsZUdkY2RreApvU0svL21TUWJnY1dubUFFWnJ6SG9GMS8wZ3NvMUhaZ0luMFlMelZoTFNBL2lYQ1g0UVQyaDNKNXozem5sdUtHCjFudjhOUWR4ZWkyRElJaEFTV2Z1ODA0Q0E5NmNRS1RUbGFhZTJmd2VxWGpkTjEvdjJucU9obmdOeXoxMzYxbUYKbXI0WG1hS0gvSXRUd09lNzJOSTlaY3dTMWxWYUN2c0lrVERDRVhkbTlyQ05QQVkxMGlUdW5JSEZYUmgrN0tQegpsSEdld0NxLzhUT29oQlJuMC9OTmZoN3VSc2xPU1oveEtiTjl0TUJ0dzM3WjhkMnZ2blhxL1lXZHNtMStKTFZ3Cm42eVlEL3lhY05KQmx3cGRkbGE4ZWFWTWpzRjZuQm5JZ1FPZjl6S1NlMDZuU1Rxdmd3VUhvc2dPRUNaSloxRXUKemJINHlzd2J0MDJ0S3RLRUZoeCt2K09UZ2UvMDZWK2pHc3FUV0xzZnJPQ05MdUE4SCsreitwVUVObXBxbm5Ibwp2YUk0N2dDK1ROcGtnWUdra0JUNkIvbS9VMDFCdU9CQlR6aElsTUVacTlxa0RXdU0yY0E1a1c1VjNGSlVjZkhuCncxSWRZSWcyV3hnN3lIY1FaZW1GUWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCjwvQ2VydGlmaWNhdGU+CjwvQ2VydGlmaWNhdGVDaGFpbj4KPC9LZXk+CjxLZXkgYWxnb3JpdGhtPSJyc2EiPgo8UHJpdmF0ZUtleSBmb3JtYXQ9InBlbSI+Ci0tLS0tQkVHSU4gUlNBIFBSSVZBVEUgS0VZLS0tLS0KTUlJRzR3SUJBQUtDQVlFQXJrY2dPZG0xVGNpY1FMYWN6VGFzb2dLSFN3akQ0amYxWDQ3aTFOeW5aMFdjUmZTcwpOWTdySFFubmZkUFFFS1N5akhrUGRBK2JNekl3L2VyUy9nTXFaNmF5VGhjUzRFS1IwT2d4NlFHZTNFWmZlY2JkCkdUM21WZEx0WlI3b3UzNm9tYjJZN3JvNmU1QWg4WGdTR09nRmdFNy9tOXRCWEpROFpmU2VWaHVXbjN6SGR1bloKMHdyNFdDRnF2ZnZmMUJ3RVlGQ3lqT3g4UzFjWFcxbDlaRlpVY2JQdXpiNWF3dWtrTUdWc3ZXVWU2dlpjak84Twp2K01NN3VPZjUxSG9jbHRjVWk1OXN4U0FuVGl6WGREVkVxTFZRRFd2bjNudjJkczl2VVZwNlVyQ0V0eWVTWWN4ClphMWx6R0luejdoQjkxVkZEVGIrdHlYTDh2eTNCUzkzL1FMQVNLU3NXVUZ1OENZMDcraStYdHNmKzFrSlRBZ0sKTjBEelNsUVh5WE9TWUpNV3ZSbHJKK0h0eFhWM1dVd1M5S0VhQmVicDUxdFRVL2NCN0p5eVJKaUxaMkxxVnVWcQpYclduTGxVL042YVBzRmtzK3ZvTjVHYnRpOGFiQWV0VXZUVi9sUTJsdm9ITmVvd3JocWJIL3FYZ05wd3BiUGI5Ci9IMi9rdE5IeDU3NEZLdVpBZ01CQUFFQ2dnR0FUQ2IrT09rZHBTQjh6blk5TEJxdzhwWUNRbEpSTGQ5ZjArS2UKMFg2ZGs2M0NMSHRPYUpUTHZjT2ZLTWRPU29kOUVZNndwdmxPeXQ4cXN6bFIrdmF0SjkrYVdDOFM2M1dMTytySwpMRk90OC9pNExZRXRDYU9YcTNiZ2p1Z2pzQklYWUI2TjNmcjRKUmdGRFB0M2hQU1Z1c3hLT3ZOaXF5NkcrZEliCkFldEtOT1NVVUN5OUpzL0xWczg3VWtybU1rd1B5WHBabXVTWEoyQ2w3eCs2Z0FhTkhhWVBPazNzWVBENUJFQzkKZEVEa2NxMDJJY3N2K2I4ZjNwOE9OMGorTmtJZTZ5Z0FPckJhNFB6aDBuTFUxUFFpR0xFZUdzR2FpOWVCQlV6TQpNVWkvMFA2dTZnbGtFUFdwOUMvNzVQWjZPcG9aMHpMdFNvOXFKZFJvUGdBOVRCdEhIQWtnK1oyRHNNMEdPN1NoCmttdGgzKzE4d1B2MVR6RzNyVmF6b2ltTitxSXltRUtpbHl2UFJHYlZUbnF0YzBSNFpQUjhnMDROUSthRmROQkYKaFhEeG9tWFhEQVRuTE9JY081VDFXVCsveXFMRndTb3VUTzNWWktLODNoNnozUW9DUzRLMnlFSU43NVQ2b01HSQpPZDl6TnJ6R1NYSjd3N1lKS2xXVzh3MUpERHZSQW9IQkFPS3YwK1drelJlY2RZT1I4TUUxODU5OHppTEg2MWFoClFwODV2Uk53aGZVQzgwSG9mUkpGcmJnYXNObGFnZ0JQVHZPN241aWdxYkcwYUtlTG15SXFlc1NtVU1UUlBxbUUKSGh3OU5HMWVySE9LL0g3WXQ1dkVocWFNVTRQVmhsN3o1ZC94T2VucGJEd3Z2Qjc4NzczOFBUMk5xaU5BVzI1NApNQ3hGNm00NkxUMTR5NkRRL3FMKzBlWHl0TnJLY1dOcWg5dFg3RXNsRGNLTzdPaldpVEdnL3dUcVExZnVnd25qCmxNWnRLV1JtT3FDaTNwVlhLUGhaY1o4WHZCMGUrdkllQlFLQndRREUwRjNoMlZEeGN3OGh2eXZEckJlTlp1enAKc25ZKzVJTUNHamNjVGhrOHJaYWJCVFpvK0RlMzcxSVdaSjlqaE5PZ1R6Y09tZmx2WlhLOHBRV3RxeUFPYmFVdwptUU13OTJYNnZLRHZhWjlDZWRmSlFRbkNGaVBUd1ZKU1VaWVRNZjQzdGtCREczdDI1RlJRU3AxanpwWUYxZUVTCmEwc2ZuT1hEaXJCdnRsNFA5WDcyeEMya09rVHkxMThIL016K0VtMGdrRWlzRXVCYzVZZlk0YmNNbjJmSE5KS0gKOXozTmltRm5CRHVzc1pScm5CU0Qyc0FXVExpVU5SeHZhclA0TjRVQ2djRUF0b2ZFQlA3OWtneU81MkdGVGQ2RwpqQjZ2MFh2UE9STmlsTm1tTU5nRFZYV0pzTUZtckdiazZnQzc5RmlYbzI0NDhiTmJZRWZHUEd3N2RPWEtCZW5VCnJ6SUlpV0svcFRuWUVQOExqeUdUbFBvT05JbUcxdXVaVE5Samp4MUpOSDRKMUpmbC9UN1N3MmZnZjhkRnVHSTYKWWEwSG1aa0J4bU1Lenl1QkNEN2FITXgra3NDV3VXS2NXeDlpbDJZNWhVYkxuRWdnNGFVMWZqc2Q4cUtGR0N3KwpESlFobzlWUE9KQkRSTCt6ZTcrQlo4V2Rtdnp5NVg4SUtZV3dHSGJRdEZLTkFvSEFDNzAxN0ZPdS9VZlVuam10CjNaVDFMcXoxOHBaL2NRN21OWWprd3A1eDZPbWRzdzlqaUcxTnZYM2IwcFFiNGE2NWhMVlUzbDBXd0tzM1pjTWUKREpiSmFiTG1pSGlIOVRLOGRYRXMxRHJqa2U1OGpYZUFvbi81a1JiVjF5MGdtM0orN0VuRm1Yc1pLU1ZEVmlxdApLcGZXNFBBNTVZUmF6YjdwQVhuVFBrYU5ZN3hMMzJJaUtzcUM5RTBlVVBhbUwzMWYzdkpjTTA5STdLR1FNY0o4CnpaYndkTFJSRFNVVkhaNWtZdVdndlpNMS9Ca3FMQmN2SCtWaG1RMTE3YnRha3JLVkFvSEFXL3k1T2czU3N5NGQKQkJWTGl2WkJjMExtVTFBZ1Z6UmZZZHpPUkZCcTZiMkxlUElLRmxBMEVOUkdjUFBmaHpKaUNEcXlIV1NXRHdPNQpDejV0ajFXQ3BldkhtcGd1TldIeHJ2a0puaUYrSFhidnNoKy9TNTNHM0lrY0wxaFhVQ3pjZC8xZElzYWM4TTFuCkN2YVlxZTZlZjB5ejNiR2tpY2thcHlDZHVvODVSaFo3NmZJU2lhUDdmR2hIMHdlQ3Zaa3p6M3pIWHBlNlZyZ0kKS3BubUtnZ2F3OFd0VThCSUtPMUlwRjFPbU44VDlqOHQ2NXhFRWY0YjNSZ05GcWdreFdpdQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo8L1ByaXZhdGVLZXk+CjxDZXJ0aWZpY2F0ZUNoYWluPgo8TnVtYmVyT2ZDZXJ0aWZpY2F0ZXM+MzwvTnVtYmVyT2ZDZXJ0aWZpY2F0ZXM+CjxDZXJ0aWZpY2F0ZSBmb3JtYXQ9InBlbSI+Ci0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlFM3pDQ0FzZWdBd0lCQWdJUVRSTDdHU1FZN3VXcFI4RFhDckFHMXpBTkJna3Foa2lHOXcwQkFRc0ZBREE1Ck1Rd3dDZ1lEVlFRTURBTlVSVVV4S1RBbkJnTlZCQVVUSURkaU16VTBPV1ptWW1ReU9HVTBNMk5tTkRaaVptTmoKWmpCaU1UVTNPRFF4TUI0WERUSTBNRGN4TWpJeE16ZzBPRm9YRFRNME1EY3hNREl4TXpnME9Gb3dPVEVNTUFvRwpBMVVFREF3RFZFVkZNU2t3SndZRFZRUUZFeUF3WmpBek1Ua3lNek14WVdJMU5XVmhPREkxTlRBd1lURm1abVF3Ck1ESTNaRENDQWFJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dHUEFEQ0NBWW9DZ2dHQkFLNUhJRG5adFUzSW5FQzIKbk0wMnJLSUNoMHNJdytJMzlWK080dFRjcDJkRm5FWDByRFdPNngwSjUzM1QwQkNrc294NUQzUVBtek15TVAzcQowdjRES21lbXNrNFhFdUJDa2REb01la0JudHhHWDNuRzNSazk1bFhTN1dVZTZMdCtxSm05bU82Nk9udVFJZkY0CkVoam9CWUJPLzV2YlFWeVVQR1gwbmxZYmxwOTh4M2JwMmRNSytGZ2hhcjM3MzlRY0JHQlFzb3pzZkV0WEYxdFoKZldSV1ZIR3o3czIrV3NMcEpEQmxiTDFsSHVyMlhJenZEci9qRE83am4rZFI2SEpiWEZJdWZiTVVnSjA0czEzUQoxUktpMVVBMXI1OTU3OW5iUGIxRmFlbEt3aExjbmttSE1XV3RaY3hpSjgrNFFmZFZSUTAyL3JjbHkvTDh0d1V2CmQvMEN3RWlrckZsQmJ2QW1OTy9vdmw3YkgvdFpDVXdJQ2pkQTgwcFVGOGx6a21DVEZyMFpheWZoN2NWMWQxbE0KRXZTaEdnWG02ZWRiVTFQM0FleWNza1NZaTJkaTZsYmxhbDYxcHk1VlB6ZW1qN0JaTFByNkRlUm03WXZHbXdIcgpWTDAxZjVVTnBiNkJ6WHFNSzRhbXgvNmw0RGFjS1d6Mi9meDl2NUxUUjhlZStCU3JtUUlEQVFBQm8yTXdZVEFkCkJnTlZIUTRFRmdRVUt0QVNrcnl2MzNpQjFKeGlSZWxkcTBzaS9Od3dId1lEVlIwakJCZ3dGb0FVL2NtNENocUoKTytqVlk3UWpXTVFzWFF2Wm4vUXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QU9CZ05WSFE4QkFmOEVCQU1DQWdRdwpEUVlKS29aSWh2Y05BUUVMQlFBRGdnSUJBSWgzZEhYdnFmZVJiNS9TY2xzL3RyNjhXZ1JaaWlPQlBHYUlQL3ZyCm1YVWxDcDYvR3VwWU93MXhWdmlOSE9pNDJUTE1HaDROdHg4SCtHcWF3Vjhtd2lJQkNXSmZsWnlway9tSWtXR1QKWmxGOVM5NGRNUjBMZzVOb2hjTk5SVlQzZVAvNjYzOTZMS1JxTElUNTJYNDlTc1lwWHY3N21RcUY3eHV3QVcweAo1NG15cHY4VS8zSVpRVk9FY3UwS3NiV3N3alZxR3lTNkJMZFlDL1YzZWQ3K0RlYVp4aE90eTZWQTQ0SnRMUm1tCnk1dWxOSTlEdXpDRitYSkV1R01XK3N0WU91aXBub3lHRkY3b1dpRFdubnkxN1A5R0NZd1JzNU9GM2lGMmhWL08KNTJad2pNajYrNWthQSsxZGxvZDBqZjhpdERaVHFMRllqeTc4b2lCTzhaaGl6dEFjWWVjYXk0VUMyRXc2cWpaRAphcXJqKzkrMnVGWjVEUytoeDE4WTFwZTZaUW5hNDlObTZJckJxNWsrbmZ4Q0I1bzZWRk9jVDQwMENxWWNnZ1dHClNpck1LWSsxeUJkd2NUaWxVTGoyd2lCbi9UQkw2dFlFWW9NaVlMWXZDejlyUzhkQThZK1lEL1JJbkE1endXeUYKcmxtZFNsb1Q3UEFSYkVDUFoyKzk2cUJsUE5oZEVVTmFZRzljQ2JROEpOMHJUY1Z5cVR0ekdHK29WYVhxV1p5dApobi9MTXBTRllNc3hHaG1Dem05UU5iSW5aMHoxWG1CRmZNRC9hbDJLZWRmRXNtUW1NWTZxNVhNWFJ3KzBGOTJKCk91aS9aWC9pa3BiTStEYnBvbThBS3Fjcy9oTzREbTZIUFozM1dXeXJET05EeWM4Yy9CQ2FHckhnbEk3MktFaUMKbjkyTgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCjwvQ2VydGlmaWNhdGU+CjxDZXJ0aWZpY2F0ZSBmb3JtYXQ9InBlbSI+Ci0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlGUVRDQ0F5bWdBd0lCQWdJUVUzTVdleHJ2NHNxOFJWLzB0ZmE4NFRBTkJna3Foa2lHOXcwQkFRc0ZBREFiCk1Sa3dGd1lEVlFRRkV4Qm1PVEl3TURsbE9EVXpZalppTURRMU1CNFhEVEkwTURjeE1qSXhNelV5TmxvWERUTTAKTURjeE1ESXhNelV5Tmxvd09URU1NQW9HQTFVRURBd0RWRVZGTVNrd0p3WURWUVFGRXlBM1lqTTFORGxtWm1KawpNamhsTkROalpqUTJZbVpqWTJZd1lqRTFOemcwTVRDQ0FpSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnSVBBRENDCkFnb0NnZ0lCQU9EUjEzMVdScjl4ZWszUXAydzV2WDRBOW5NdjdJRi9jUzlrOW9GMU9jc2JUY1IxckQ3dHIwZEUKZkZ5dk9GUjhpaHZ4OUxEUjVXa2NqREo4WlhZS1E2OUJYNm56NE4xZ0EwQ3RBN2wwblR0SldVS3ZuMmM2YjV2aAoxYkMxdStROElyUU9abG1kdmo3NFFGZ2ZIKzBHSjNhMnpidG92Snpzb2EybnhqM1hQeFdZUFNaY1ZiRzhBN0pvCmgxTTgxamFPSlo5T2NoQ2p2aEZsS0hPTVoxbXdUSHFYSWhybi9rdll4NGxlMUg1eng5bzZSbFN6enVrYVhhb0YKMWtTRlR1bWpMWTZOQkR6L0tMdnYrczNXTmpWVU1DMjVEQStJZEtCSFdLbFliN1M4Vk0wYmNzTlFaV3BiaFBDNQpiQStmSjFXK0VKS0loOU12TWZIbGxLaDgrUmZSbDM4VllBcWVSYUJZQ3pYemVYaTVNTjNReDhKRzdaaENWckM1ClM1TmNvSWU0NExjZmEyNy9yL0tOVGxPUE4wTDM4Sm94bDFMOTJFeUwyVURxM3RyQnBtUDNIUmFtNDdmYkdOeGEKdGtJcDZVdEdpK0ZTcVo2d09sRzdYNzF3TXFhMzNZQVhOTjFPbHhON01oTEgxRjd6L0ZLNEZTSS9UMG1LUDF6dgpWOFZnOU9od1BzSEhra2QxS2Q5c2ZPdVJmNUp1NnlWQzEvL3pXQ0szeVl5cVkrUVd6ZDluZy9LQWlMbUxEbzdrCnF1Z2lmM1RuS1lyNHdRNHJua0VURGEwVVZKeXNwWFlHRCtIa3VjYm10TG5wK1djejBsL3d0Q1IyRWFjU2E1aUIKNHllNFhpMXJ3aml6bWxUczVuQ09SSWZic0NKblFMOFJlTDV5ZnJJdU5qZ1NDMGh4M3BlRkFnTUJBQUdqWXpCaApNQjBHQTFVZERnUVdCQlQ5eWJnS0dvazc2TlZqdENOWXhDeGRDOW1mOURBZkJnTlZIU01FR0RBV2dCUTJZZUVBCmZJZ0ZDVkdMUkd4SC94cE15ZXBQRWpBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUE0R0ExVWREd0VCL3dRRUF3SUMKQkRBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQWdFQU84SFdSNWR1d0xWYS9CZk1DOXUxRzR2MnhYRXo3K3BVKzZKRQo0ejVjc1g5aWxxS3FpS2pmZTh3WmRBMndjYmhQbkduWmFIUllQK2lJclZuaVdJdHFqY21DWG91SUNtb2VReVJjCkRtWXppVEdLOC9Va2hnbzU3YzNDQ2RjREZWNGRqZThLQi9VVWNVUDNvRnJISVJBU2lXOUFTOFlnTGdFZmtuaGQKUFdIZG9tKzF6UGlBVW5oL1JyNDFFYjYvTERCTGlHNUc2cndacG1jeDRaRGZqYU9lT1I5dDNhalNpQjl2UGpXYwpKSmllTGNFNGxtcUh3T1kzbUhBOUZ3MHhHRUV3N21MaHZidVV5b24vaEdMRmJEWGZ1V2VUNHA2VXI0QmV6SE56CnI3aDI3QUQ4M29Pc2ttbWZyTFRwWXNUQU5NajFWa0plakk5eFUydlplaHBSMW5UdTJnK2VtK1hPNmVYbnpoV24KVFF4VzJXRTNwT1d4d09MVSs0a3NocVNnWnVsRjFEdERiMGpRNDhCVHV4amhTb0MyUU1ud2I0RW10ejdSWlhaMwpuMjFOaGl5Q3lHVkk2YzNBVlN6NVptWUtURmEvSTBheDcweTROVFYvbG1JUWxlYTlPLzcvZzRuNUY3MVlBZnJlCnNhSTZHT1kwRFVjMG0xNU03WWdRYURpQ3owU0tscUxMWkpSanlVdnRWYjFVVkRORWtZY05ZVkRXVVlWUDdKNVYKMjAyY0ZFS0dJak4xRnA4MFZNN1NXMUtsdHlKQkM1TTlZcWxSbjlrSDBDOWJxVUhyY3pZLzJHbWpKcVBjUkdVSgoxUHNQV0ZDaDIzUjJ3RFVUT2tCQ2pTT1FFeGc5K0JTQlgvUHpFa0dlUzk5NnJTRE5uYk83TmpzZzh6cWI1andYCmd6NmNwUTQ9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KPC9DZXJ0aWZpY2F0ZT4KPENlcnRpZmljYXRlIGZvcm1hdD0icGVtIj4KLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZIRENDQXdTZ0F3SUJBZ0lKQVBIQmNxYVo2dlVkTUEwR0NTcUdTSWIzRFFFQkN3VUFNQnN4R1RBWEJnTlYKQkFVVEVHWTVNakF3T1dVNE5UTmlObUl3TkRVd0hoY05Nakl3TXpJd01UZ3dOelE0V2hjTk5ESXdNekUxTVRndwpOelE0V2pBYk1Sa3dGd1lEVlFRRkV4Qm1PVEl3TURsbE9EVXpZalppTURRMU1JSUNJakFOQmdrcWhraUc5dzBCCkFRRUZBQU9DQWc4QU1JSUNDZ0tDQWdFQXI3YkhnaXV4cHdIc0s3UXVpOHhVRm1Pcjc1Z3ZNc2QvZFRFRERKZFMKU3h0ZjZBbjd4eXFwUlI5MFBMMmFieE0xZEVxbFhuZjJ0cXcxTmU0WHdsNWpsUmZkbkpMbU4wcFR5LzRsajQvNwp0djBTazNpaUtreXBuRVV0UjZXZk1nSDBRWmZLSE0xK2RpK3k5VEZSdHY2eS8vMHJiK1QrVzhhOW5zTkwvZ2dqCm5hcjg2NDYxcU8wck9zMmNYanAza09HMUZFSjVNVm1GbUJHdG5yS3BhNzNYcFh5VHFSeEIvTTBuMW4vVzluR3EKQzRGU1lhMDRUNk41UklaR0JOMnoyTVQ1SUtHYkZsYkM4VXJXMER4VzdBWUltUVFjSHRHbC9tMDBRTFZXdXRIUQpvVkpZbkZQbFhUY0hZdkFTTHUrUmhoc2JEbXhNZ0pKMG1jRHB2c0M0UGp2QitUeHl3RWxnUzcwdkUwWG1MRCtPCkp0dnNCc2xIWnZQQktDT2RUME1TK3RnU09JZmdhK3oxWjFnNytEVmFnZjdxdXZtYWc4amZQaW95S3Z4bksvRWcKc1RVVmkyZ2h6cTh3bTI3dWQvbUlNN0FZMnFFT1JSOEdvM1RWQjRIeldRZ3BacnQzaTVNSWxDYVk1MDRMelNSaQppZ0hDekFQbEh3cytXMHJCNU4rZXI1LzJwSktuZkJTRGlDaUZBVnRDTE9aN2dMaU1tMGpoTzJCNnRVWEhJLytNClJQankwMmk1OWxJTk1SUmV2NTZHS3RjZDlxTy8wa1VKV2RaVGRBMlhvUzgyaXhQdlp0WFFwVXB1TDEyYWIrOUUKYURLOFo0UkhKWVlmQ1QzUTV2TkFYYWlXUSs4UFRXbTJRZ0JSL2Jrd1NXYytOcFVGZ05QTjlQdlFpOFdFZzVVbQpBR01DQXdFQUFhTmpNR0V3SFFZRFZSME9CQllFRkRaaDRRQjhpQVVKVVl0RWJFZi9Ha3pKNms4U01COEdBMVVkCkl3UVlNQmFBRkRaaDRRQjhpQVVKVVl0RWJFZi9Ha3pKNms4U01BOEdBMVVkRXdFQi93UUZNQU1CQWY4d0RnWUQKVlIwUEFRSC9CQVFEQWdJRU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQ0FRQjhjTXFUbGxIYzhVK3FDck9sZzNINwoxNzRsbWFDc2JvL2JKMEMxN0pFZ01MYjRrdnJxc1haczAxVTNtQi9xQUJnLzF0NVBkNUFPUkhBUnMxaGhxR0lDClcvbktNYXY1NzRmOXJaTjRQQzJabHVmR1hiN3NJZEpwR2lPOWN0UmhpTHVZdWx5MTBKY2NVWkdFSHBIU1lNMkcKdGtnWWJaYmE2bHNDUFlBQVA4M2N5RFYrMWFPa1RmMVJDcC9sTTBQS3ZteFlOMTBSWXNLNjMxanJsZUdkY2RreApvU0svL21TUWJnY1dubUFFWnJ6SG9GMS8wZ3NvMUhaZ0luMFlMelZoTFNBL2lYQ1g0UVQyaDNKNXozem5sdUtHCjFudjhOUWR4ZWkyRElJaEFTV2Z1ODA0Q0E5NmNRS1RUbGFhZTJmd2VxWGpkTjEvdjJucU9obmdOeXoxMzYxbUYKbXI0WG1hS0gvSXRUd09lNzJOSTlaY3dTMWxWYUN2c0lrVERDRVhkbTlyQ05QQVkxMGlUdW5JSEZYUmgrN0tQegpsSEdld0NxLzhUT29oQlJuMC9OTmZoN3VSc2xPU1oveEtiTjl0TUJ0dzM3WjhkMnZ2blhxL1lXZHNtMStKTFZ3Cm42eVlEL3lhY05KQmx3cGRkbGE4ZWFWTWpzRjZuQm5JZ1FPZjl6S1NlMDZuU1Rxdmd3VUhvc2dPRUNaSloxRXUKemJINHlzd2J0MDJ0S3RLRUZoeCt2K09UZ2UvMDZWK2pHc3FUV0xzZnJPQ05MdUE4SCsreitwVUVObXBxbm5Ibwp2YUk0N2dDK1ROcGtnWUdra0JUNkIvbS9VMDFCdU9CQlR6aElsTUVacTlxa0RXdU0yY0E1a1c1VjNGSlVjZkhuCncxSWRZSWcyV3hnN3lIY1FaZW1GUWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCjwvQ2VydGlmaWNhdGU+CjwvQ2VydGlmaWNhdGVDaGFpbj4KPC9LZXk+CjwvS2V5Ym94Pgo8L0FuZHJvaWRBdHRlc3RhdGlvbj4= ================================================ FILE: update.json ================================================ { "version": "3.0.5", "versionCode": 305, "zipUrl": "https://github.com/Yurii0307/yurikey/releases/download/v3.0.5/Yurikey-v3.0.5.signed.zip", "changelog": "https://raw.githubusercontent.com/Yurii0307/yurikey/main/changelog.md" }