├── .gitignore ├── LICENSE ├── README.md ├── mat.txt ├── mat2ifw_Auto.py ├── mat2ifw_Easy.py ├── mat2ifw_Easy_enhanced.py └── mat2ifw_Easy_enhanced.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .ropeproject/ 2 | ifw/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | IFW 是什么?[https://cn.apkjam.com/blog/ifw.html](https://cn.apkjam.com/blog/ifw.html) 2 | 3 | :bookmark: 执行脚本之前需要先准备好「[写轮眼](https://cn.apkjam.com/mat.html)」的配置文件(格式示例 [https://github.com/apkjam/MAT-backup](https://github.com/apkjam/MAT-backup))并将其命名为 `mat.txt`,然后放置到下列脚本执行时的相同路径下。 4 | 5 | > 这里附带的 `mat.txt` 仅供参考。 6 | 7 | --- 8 | 9 | `mat2ifw_Auto.py` 会按照 [@蠢黑通行 的方法](https://blackyau.cc/8.html)识别并分类生成 IFW: 10 | 11 | > 使用了 `broadcast`、`service`、`activity` 关键字来判断组件属性,将其两边加上前缀和后缀,并分别粘贴至三个不同的新建文档,最后按顺序将其合并。如果有不按标准命名的组件,会将其写在最底部,需人工操作解决,可以将光标停留在任意一行,分别将该行组件插入 `服务` | `广播` | `活动` 分组。这种方法处理的 IFW 文件比较简洁,不过就是需要手动操作一下部分遗漏的组件。 12 | 13 | `mat2ifw_Easy.py` 则会将所有值在每个节点中复制一份来生成 IFW 文件: 14 | 15 | > 先在两边加上前缀和后缀,后将整个 MAT 方案复制两遍然后在将 IFW 用于判定 `broadcast`、`service`、`activity` 属性的语句,重复三遍。 16 | 17 | `mat2ifw_Easy.py` 的在线版:[https://apkjam.github.io/IFW/mat2ifw.html](https://apkjam.github.io/IFW/mat2ifw.html) 18 | 19 | `mat2ifw_Easy_enhanced.py` 为 `mat2ifw_Easy.py` 的增强版本,可以根据按照 App 的 `Application ID`(`Android Package Name`)[link](https://developer.android.com/studio/build/application-id.html) 命名各自的规则。 20 | 21 | `mat2ifw_Easy_enhanced.sh` 为 `mat2ifw_Easy.py` 增强版本的 Linux Shell 实现。 22 | -------------------------------------------------------------------------------- /mat.txt: -------------------------------------------------------------------------------- 1 | cmb.pb/com.baidu.speech.VoiceRecognitionService 2 | cmb.pb/com.huawei.android.pushagent.PushBootReceiver 3 | cmb.pb/com.huawei.android.pushagent.PushEventReceiver 4 | cmb.pb/com.huawei.android.pushagent.PushService 5 | cmb.pb/com.mb.zhaohusdk.push.HWPushReceiver 6 | cmb.pb/com.mb.zhaohusdk.push.MiPushReceiver 7 | cmb.pb/com.xiaomi.push.service.XMPushService 8 | cmb.pb/com.xiaomi.push.service.receivers.NetworkStatusReceiver 9 | cmb.pb/com.xiaomi.push.service.receivers.PingReceiver 10 | cn.com.cmbc.newmbank/cn.com.cmbc.newmbank.push.PushReceiverHms 11 | cn.com.cmbc.newmbank/com.huawei.hms.support.api.push.PushEventReceiver 12 | cn.com.cmbc.newmbank/com.igexin.sdk.PushReceiver 13 | cn.com.langeasy.LangEasyLexis/com.taobao.accs.EventReceiver 14 | cn.mdict/cn.mdict.services.ClipboardMonitorStarter 15 | com.Qunar/com.mqunar.spider.GPushReceiver 16 | com.Qunar/com.xiaomi.push.service.receivers.PingReceiver 17 | com.accuweather.paid.android/com.accuweather.app.RateAppDialog 18 | com.accuweather.paid.android/com.accuweather.app.UpgradeDialog 19 | com.accuweather.paid.android/com.accuweather.brightcove.BrightCoveFullScreenActivity 20 | com.accuweather.paid.android/com.accuweather.debug.DebugActivity 21 | com.accuweather.paid.android/com.accuweather.ford.SdlLockScreen 22 | com.accuweather.paid.android/com.accuweather.notifications.AccuNotificationBroadcastReceiver 23 | com.accuweather.paid.android/com.accuweather.samsungmultiscreen.AccuSamsungTVDiscovery 24 | com.accuweather.paid.android/com.accuweather.wear.DataProviderService 25 | com.accuweather.paid.android/com.accuweather.widgets.WidgetConfigureActivityDark 26 | com.accuweather.paid.android/com.accuweather.widgets.WidgetConfigureActivityLight 27 | com.accuweather.paid.android/com.accuweather.widgets.WidgetDailyDarkService 28 | com.accuweather.paid.android/com.accuweather.widgets.WidgetDailyLightService 29 | com.accuweather.paid.android/com.accuweather.widgets.WidgetFollowMeDarkProvider 30 | com.accuweather.paid.android/com.accuweather.widgets.WidgetFollowMeLightProvider 31 | com.accuweather.paid.android/com.accuweather.widgets.clockwidget.ClockWidgetConfigureActivity 32 | com.accuweather.paid.android/com.accuweather.widgets.clockwidget.ClockWidgetProvider 33 | com.accuweather.paid.android/com.accuweather.widgets.clockwidget.ClockWidgetService 34 | com.accuweather.paid.android/com.accuweather.widgets.miniwidget.MiniWidgetConfigureActivity 35 | com.accuweather.paid.android/com.accuweather.widgets.miniwidget.MiniWidgetProvider 36 | com.accuweather.paid.android/com.accuweather.widgets.miniwidget.MiniWidgetService 37 | com.accuweather.paid.android/com.brightcove.player.captioning.BrightcoveCaptionPropertiesActivity 38 | com.accuweather.paid.android/com.fiksu.asotracking.InstallTracking 39 | com.accuweather.paid.android/com.google.android.gms.ads.AdActivity 40 | com.accuweather.paid.android/com.google.android.gms.ads.purchase.InAppPurchaseActivity 41 | com.accuweather.paid.android/com.google.android.gms.analytics.AnalyticsReceiver 42 | com.accuweather.paid.android/com.google.android.gms.analytics.AnalyticsService 43 | com.accuweather.paid.android/com.google.android.gms.analytics.CampaignTrackingService 44 | com.accuweather.paid.android/com.urbanairship.push.AdmPushReceiver 45 | com.accuweather.paid.android/com.urbanairship.push.GcmPushReceiver 46 | com.accuweather.paid.android/com.urbanairship.push.UAInstanceIDListenerService 47 | com.achievo.vipshop/com.achievo.vipshop.commons.push.HaweiPushReceiver 48 | com.achievo.vipshop/com.huawei.android.pushagent.PushEventReceiver 49 | com.achievo.vipshop/com.tencent.qalsdk.core.NetConnInfoCenter 50 | com.adobe.lrmobile/com.adobe.lrmobile.profilecorrection.NetworkStatusReceiver 51 | com.aide.ui/com.aide.ui.UserPresentBroadcastReceiver 52 | com.aide.ui/com.appfour.common.gcm.GcmUserPresentBroadcastReceiver 53 | com.airbnb.android/cn.jpush.android.service.PushReceiver 54 | com.alensw.PicFolder/com.alensw.cloud.CloudConfigActivity 55 | com.alensw.PicFolder/com.alensw.cloud.ShareToCloudActivity 56 | com.alensw.PicFolder/com.alensw.cloud.UrlTaskActivity 57 | com.alensw.PicFolder/com.alensw.cloud.UrlTaskService 58 | com.alensw.PicFolder/com.alensw.cloud.oauth.BasicAuthActivity 59 | com.alensw.PicFolder/com.alensw.cloud.oauth.GmsAuthActivity 60 | com.alensw.PicFolder/com.alensw.cloud.oauth.OAuthActivity 61 | com.alensw.PicFolder/com.alensw.cloud.sync.ConnectionChangeReceiver 62 | com.alensw.PicFolder/com.alensw.cloud.sync.SyncService 63 | com.alensw.PicFolder/com.alensw.cloud.sync.SyncSettings 64 | com.alensw.PicFolder/com.alensw.transfer.TransferActivity 65 | com.alensw.PicFolder/com.alensw.transfer.TransferService 66 | com.alensw.PicFolder/com.dropbox.client2.android.AuthActivity 67 | com.ali.money.shield/com.taobao.accs.EventReceiver 68 | com.ali.money.shield/org.android.agoo.xiaomi.MiPushBroadcastReceiver 69 | com.alibaba.wireless/com.taobao.accs.EventReceiver 70 | com.alibaba.wireless/org.android.agoo.huawei.HuaWeiReceiver 71 | com.alibaba.wireless/org.android.agoo.xiaomi.MiPushBroadcastReceiver 72 | com.amazon.kindlefc/com.amazon.identity.auth.accounts.SessionUserChangedToAccountForPackageChangedAdpater 73 | com.amazon.kindlefc/com.igexin.sdk.PushReceiver 74 | com.amazon.mShop.android.shopping/com.amazon.identity.auth.accounts.SessionUserChangedToAccountForPackageChangedAdpater 75 | com.amazon.mShop.android.shopping/com.amazon.mShop.httpUrlDeepLink.HttpUrlDeepLinkingActivity 76 | com.amazon.mShop.android.shopping/com.amazon.mShop.kiang.DeviceRegistrationReceiver 77 | com.android.browser/com.android.browser.push.BrowserPushSDKReceiver 78 | com.android.browser/com.xiaomi.push.service.XMPushService 79 | com.android.email/com.kingsoft.email.service.AttachmentDownloadService 80 | com.android.email/com.kingsoft.email.service.EmailUpgradeBroadcastReceiver 81 | com.android.email/com.kingsoft.email.service.ImapPushService 82 | com.android.email/com.kingsoft.email.service.ImapService 83 | com.android.email/com.kingsoft.email.service.LegacyEasAuthenticatorService 84 | com.android.email/com.kingsoft.email.service.LegacyEmailAuthenticatorService 85 | com.android.email/com.kingsoft.email.service.Pop3Service 86 | com.android.email/com.kingsoft.exchange.service.EmailSyncAdapterService 87 | com.android.fileexplorer/com.android.fileexplorer.push.xiaomi.PushReceiver 88 | com.android.fileexplorer/com.xiaomi.push.service.XMPushService 89 | com.android.htmlviewer/com.android.settings.wifi.openwifi.OpenWifiReceiver 90 | com.android.managedprovisioning/com.android.managedprovisioning.uiflows.PostEncryptionActivity 91 | com.android.midrive/com.android.midrive.service.NetChangeReceiver 92 | com.android.mms/com.xiaomi.push.service.XMPushService 93 | com.android.musicfx/com.android.musicfx.ControlPanelReceiver 94 | com.android.providers.downloads/com.xiaomi.push.service.XMPushService 95 | com.android.provision/com.android.provision.activities.DefaultActivity 96 | com.android.quicksearchbox/com.android.quicksearchbox.push.QsbPushMessageReceiver 97 | com.android.quicksearchbox/com.xiaomi.push.service.XMPushService 98 | com.android.quicksearchbox/com.xiaomi.push.service.receivers.NetworkStatusReceiver 99 | com.android.settings/com.android.settings.CryptKeeper 100 | com.android.settings/com.android.settings.MiuiSettingsReceiver 101 | com.android.settings/com.android.settings.Settings$DataUsageSummaryActivity 102 | com.android.settings/com.android.settings.Settings$Lte4GEnableActivity 103 | com.android.settings/com.android.settings.Settings$MobileNetworkMainActivity 104 | com.android.settings/com.android.settings.Settings$OtherDeviceFunctionsSettingsActivity 105 | com.android.settings/com.android.settings.Settings$ProfileMgrMainActivity 106 | com.android.settings/com.android.settings.Settings$RoamingSettingsActivity 107 | com.android.settings/com.android.settings.Settings$SystemUpdateActivity 108 | com.android.settings/com.android.settings.Settings$TimerSwitchSettingsActivity 109 | com.android.settings/com.android.settings.widget.SettingsAppWidgetProvider 110 | com.android.stk/com.android.stk.StkMain 111 | com.android.stk/com.android.stk.StkMenuActivity 112 | com.android.systemui/com.xiaomi.push.service.XMPushService 113 | com.android.thememanager/com.android.thememanager.push.ThemePushReceiver 114 | com.android.thememanager/com.xiaomi.push.service.XMPushService 115 | com.android.thememanager/com.xiaomi.push.service.receivers.NetworkStatusReceiver 116 | com.android.thememanager/com.xiaomi.push.service.receivers.PingReceiver 117 | com.android.vending.billing.InAppBillingService.CLON/com.google.android.finsky.billing.iab.InAppBillingFService 118 | com.android.vending.billing.InAppBillingService.CLON/com.google.android.finsky.services.LicensingService 119 | com.android.vending/com.google.android.finsky.activities.DebugActivity 120 | com.android.vending/com.google.android.finsky.billing.setupwizard.SetupWizardPaymentsAccountChangeBroadcastReceiver 121 | com.android.vending/com.google.android.finsky.billing.setupwizard.SetupWizardPaymentsEnablementService 122 | com.android.vending/com.google.android.finsky.instantapps.ContentFilterUpdatedReceiver 123 | com.android.vending/com.google.android.finsky.instantapps.EphemeralInstallerActivity 124 | com.android.vending/com.google.android.finsky.instantapps.InstantAppsConfigChangeListener 125 | com.android.vending/com.google.android.finsky.instantapps.appmanagement.InstantAppRemoveMonitor 126 | com.antzb.androidapp/com.igexin.sdk.PushReceiver 127 | com.app.hero.ui/com.app.hero.pushmessage.PushMessageReceiver 128 | com.app.hero.ui/com.baidu.android.pushservice.PushService 129 | com.app.hero.ui/com.baidu.android.pushservice.PushServiceReceiver 130 | com.app.hero.ui/com.baidu.android.pushservice.RegistrationReceiver 131 | com.appgenix.bizcal/com.appgenix.bizcal.BizCalReceiver 132 | com.baidu.BaiduMap/com.baidu.android.pushservice.CommandService 133 | com.baidu.BaiduMap/com.baidu.android.pushservice.PushPatchMessageReceiver 134 | com.baidu.BaiduMap/com.baidu.android.pushservice.PushService 135 | com.baidu.BaiduMap/com.baidu.android.pushservice.PushServiceReceiver 136 | com.baidu.BaiduMap/com.baidu.android.pushservice.RegistrationReceiver 137 | com.baidu.BaiduMap/com.baidu.baidumaps.push.BMPushMessageReceiver 138 | com.baidu.BaiduMap/com.baidu.wallet.remotepay.BDWalletAppPayService 139 | com.baidu.BaiduMap/com.xiaomi.mipush.sdk.MessageHandleService 140 | com.baidu.BaiduMap/com.xiaomi.mipush.sdk.PushMessageHandler 141 | com.baidu.input/com.baidu.input.ImeAppRecommendActivity 142 | com.baidu.input/com.baidu.input.ImeCropImageActivity 143 | com.baidu.input/com.baidu.input.ImeCustomSkinActivity 144 | com.baidu.input/com.baidu.input.ImeSearchActivity 145 | com.baidu.input/com.baidu.input.ImeSkinRecommendActivity 146 | com.baidu.input/com.baidu.input.ImeSkinTryActivity 147 | com.baidu.input/com.baidu.sapi2.share.ShareReceiver 148 | com.baidu.input_mi/com.baidu.mipush.MiPushMessageReceiver 149 | com.baidu.input_mi/com.baidu.sapi2.share.ShareService 150 | com.baidu.input_mi/com.xiaomi.push.service.XMPushService 151 | com.baidu.input_mi/com.xiaomi.push.service.receivers.NetworkStatusReceiver 152 | com.baidu.input_mi/com.xiaomi.push.service.receivers.PingReceiver 153 | com.baidu.netdisk/com.baidu.android.pushservice.CommandService 154 | com.baidu.netdisk/com.baidu.android.pushservice.PushService 155 | com.baidu.netdisk/com.baidu.android.pushservice.PushServiceReceiver 156 | com.baidu.netdisk/com.baidu.cyberplayer.dlna.NetworkChangeReceiver 157 | com.baidu.netdisk/com.baidu.devicesecurity.receiver.DSDeviceAdminReceiver 158 | com.baidu.netdisk/com.baidu.location.f 159 | com.baidu.netdisk/com.baidu.netdisk.push.NetdiskPushMessageReceiver 160 | com.baidu.notes/com.baidu.android.pushservice.PushService 161 | com.baidu.notes/com.baidu.android.pushservice.PushServiceReceiver 162 | com.baidu.notes/com.baidu.android.pushservice.RegistrationReceiver 163 | com.baidu.notes/com.baidu.notes.receiver.PushMessageReceiver 164 | com.baojiazhijia.qichebaojia/cn.mucang.android.push.MucangPushReceiver 165 | com.baojiazhijia.qichebaojia/com.xiaomi.mipush.sdk.MessageHandleService 166 | com.baojiazhijia.qichebaojia/com.xiaomi.mipush.sdk.PushMessageHandler 167 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.XMJobService 168 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.XMPushService 169 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.receivers.NetworkStatusReceiver 170 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.receivers.PingReceiver 171 | com.baojiazhijia.qichebaojia/io.rong.push.PushReceiver 172 | com.baojiazhijia.qichebaojia/io.rong.push.PushService 173 | com.baojiazhijia.qichebaojia/io.rong.push.core.MessageHandleService 174 | com.baojiazhijia.qichebaojia/io.rong.push.core.PushRegistrationService 175 | com.bdatu.ngphone/com.bdatu.ngphone.DemoMessageReceiver 176 | com.bdatu.ngphone/com.xiaomi.push.service.receivers.PingReceiver 177 | com.cainiao.wireless/com.taobao.accs.EventReceiver 178 | com.cainiao.wireless/org.android.agoo.huawei.HuaWeiReceiver 179 | com.cainiao.wireless/org.android.agoo.xiaomi.MiPushBroadcastReceiver 180 | com.calazova.club.guangzhu/cn.jpush.android.service.AlarmReceiver 181 | com.calazova.club.guangzhu/cn.jpush.android.service.PushReceiver 182 | com.chinamworld.main/com.ccb.android.yxpush.mif.BootBroadcastReceiver 183 | com.ciji.jjk/com.xiaomi.push.service.receivers.PingReceiver 184 | com.ciji.jjk/io.rong.push.platform.MiMessageReceiver 185 | com.cmbchina.ccd.pluto.cmbActivity/com.igexin.sdk.PushReceiver 186 | com.coolapk.market/com.xiaomi.push.service.XMPushService 187 | com.daimajia.gold/com.avos.avoscloud.AVBroadcastReceiver 188 | com.daimajia.gold/com.daimajia.gold.receiver.GoldPushReceiver 189 | com.diandian.android.easylife/com.diandian.android.easylife.receiver.ActionReceiver 190 | com.dianping.v1/com.dianping.base.push.pushservice.HWPushMessageReceiver 191 | com.dianping.v1/com.dianping.base.push.pushservice.MiPushMessageReceiver 192 | com.dianping.v1/com.huawei.android.pushagent.PushBootReceiver 193 | com.dianping.v1/com.huawei.android.pushagent.PushEventReceiver 194 | com.dianping.v1/com.xiaomi.push.service.XMPushService 195 | com.dianping.v1/com.xiaomi.push.service.receivers.PingReceiver 196 | com.douban.frodo/com.douban.frodo.push.cnhuawei.HuaweiPushMessageReceiver 197 | com.douban.frodo/com.huawei.hms.support.api.push.PushEventReceiver 198 | com.douban.frodo/com.xiaomi.push.service.XMPushService 199 | com.dropbox.android/com.dropbox.android.activity.DropboxShareWith 200 | com.dropbox.android/com.dropbox.android.service.DropboxNetworkReceiver 201 | com.dropbox.android/com.dropbox.android.sharing.GrantAccessDispatchActivity 202 | com.dropbox.android/com.dropbox.android.shortcuts.CreateFileShortcutActivity 203 | com.dropbox.android/com.evernote.android.job.gcm.PlatformGcmService 204 | com.duokan.phone.remotecontroller/com.xiaomi.mitv.phone.remotecontroller.push.RcPushMessageReceiver 205 | com.duokan.phone.remotecontroller/com.xiaomi.push.service.XMPushService 206 | com.duokan.phone.remotecontroller/com.xiaomi.push.service.receivers.NetworkStatusReceiver 207 | com.duokan.phone.remotecontroller/com.xiaomi.push.service.receivers.PingReceiver 208 | com.duokan.reader/com.duokan.reader.domain.job.JobManagerService 209 | com.duokan.reader/com.xiaomi.mipush.sdk.MessageHandleService 210 | com.duokan.reader/com.xiaomi.mipush.sdk.PushMessageHandler 211 | com.duokan.reader/com.xiaomi.push.service.XMJobService 212 | com.duokan.reader/com.xiaomi.push.service.XMPushService 213 | com.ecitic.bank.mobile/com.igexin.sdk.PushReceiver 214 | com.ecitic.bank.mobile/com.igexin.sdk.PushService 215 | com.eg.android.AlipayGphone/com.alipay.android.shareassist.ui.WeiboAuthActivity 216 | com.eg.android.AlipayGphone/com.alipay.android.shareassist.ui.WeiboEditActivity 217 | com.eg.android.AlipayGphone/com.alipay.android.shareassist.ui.WeiboFrindListActivity 218 | com.eg.android.AlipayGphone/com.alipay.android.tablauncher.HuaWeiQuickActionService 219 | com.eg.android.AlipayGphone/com.alipay.auth.AuthWeiboActivity 220 | com.eg.android.AlipayGphone/com.alipay.mobile.appstoreapp.download.ExternalDownloadIntentService 221 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInMainProcess 222 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInToolsProcess 223 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInlite1 224 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInlite2 225 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInlite3 226 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInlite4 227 | com.eg.android.AlipayGphone/com.alipay.mobile.common.logging.process.LogServiceInlite5 228 | com.eg.android.AlipayGphone/com.alipay.mobile.healthcommon.stepcounter.APExtStepService 229 | com.eg.android.AlipayGphone/com.alipay.mobile.logmonitor.ClientMonitorService 230 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService 231 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService$H5ExternalDownloadIntentService1 232 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService$H5ExternalDownloadIntentService2 233 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService$H5ExternalDownloadIntentService3 234 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService$H5ExternalDownloadIntentService4 235 | com.eg.android.AlipayGphone/com.alipay.mobile.nebulaappproxy.api.download.H5ExternalDownloadIntentService$H5ExternalDownloadIntentService5 236 | com.eg.android.AlipayGphone/com.alipay.mobile.notification.ClickPushReceiver 237 | com.eg.android.AlipayGphone/com.alipay.mobile.rome.pushservice.integration.PushDistributerService 238 | com.eg.android.AlipayGphone/com.alipay.mobile.rome.pushservice.integration.RecvMsgIntentService 239 | com.eg.android.AlipayGphone/com.alipay.mobile.rome.pushservice.merchant.MerchantBroadcastReceiver 240 | com.eg.android.AlipayGphone/com.alipay.pushsdk.deliver.PushDelayMsgIntentService 241 | com.eg.android.AlipayGphone/com.alipay.pushsdk.deliver.PushReportIntentService 242 | com.eg.android.AlipayGphone/com.alipay.pushsdk.push.AppInfoRecvIntentService 243 | com.eg.android.AlipayGphone/com.alipay.pushsdk.push.NotificationService 244 | com.eg.android.AlipayGphone/com.alipay.pushsdk.push.NotificationService$InnerService 245 | com.eg.android.AlipayGphone/com.alipay.pushsdk.push.alive.PushJobService 246 | com.eg.android.AlipayGphone/com.alipay.pushsdk.thirdparty.hw.HuaWeiPushReceiver 247 | com.eg.android.AlipayGphone/com.alipay.pushsdk.thirdparty.xiaomi.XiaoMiMsgReceiver 248 | com.eg.android.AlipayGphone/com.meizu.cloud.pushsdk.SystemReceiver 249 | com.eg.android.AlipayGphone/com.xiaomi.mipush.sdk.MessageHandleService 250 | com.eg.android.AlipayGphone/com.xiaomi.mipush.sdk.PushMessageHandler 251 | com.eg.android.AlipayGphone/com.xiaomi.push.service.XMPushService 252 | com.eg.android.AlipayGphone/com.xiaomi.push.service.receivers.NetworkStatusReceiver 253 | com.eg.android.AlipayGphone/com.xiaomi.push.service.receivers.PingReceiver 254 | com.estrongs.android.pop/com.android.apps.pros.LocalCReceiver 255 | com.estrongs.android.pop/com.estrongs.android.pop.app.StartServiceReceiver 256 | com.evernote/com.evernote.android.collect.CollectImageUriReceiver 257 | com.evernote/com.evernote.ui.LGSmartBulletinWidget 258 | com.evernote/com.evernote.widget.EvernoteWidgetListClickActionService 259 | com.evernote/com.evernote.widget.EvernoteWidgetListRemoteViewService 260 | com.evernote/com.evernote.widget.EvernoteWidgetListService 261 | com.facebook.katana/com.facebook.backgroundlocation.reporting.BackgroundLocationReportingGcmUploadTaskService 262 | com.facebook.katana/com.facebook.backgroundlocation.reporting.monitors.PhotographyMonitorReceiver 263 | com.facebook.katana/com.facebook.backgroundlocation.reporting.monitors.PowerConnectionMonitorReceiver 264 | com.facebook.katana/com.facebook.deeplinking.activity.JobsBrowserDeepLinkingAliasActivity 265 | com.facebook.katana/com.facebook.deeplinking.activity.LoyaltyDeepLinkingAliasActivity 266 | com.facebook.katana/com.facebook.deeplinking.activity.MarketplaceDeepLinkingAliasActivity 267 | com.facebook.katana/com.facebook.deeplinking.activity.PagesJobsDeepLinkingAliasActivity 268 | com.facebook.katana/com.facebook.device_id.DefaultPhoneIdProvider 269 | com.facebook.katana/com.facebook.friendsharing.inspiration.shortcut.InspirationCameraIntentLaunchActivity 270 | com.facebook.katana/com.facebook.katana.platform.TokenRefreshService 271 | com.facebook.katana/com.facebook.katana.provider.AttributionIdProvider 272 | com.facebook.katana/com.facebook.notifications.settings.NotificationSettingsLauncherActivity 273 | com.facebook.katana/com.facebook.oxygen.preloads.integration.dogfooding.AuthListener$EmployeeLoggedInMarkerReceiver 274 | com.facebook.katana/com.facebook.photos.upload.receiver.ConnectivityChangeReceiver 275 | com.facebook.katana/com.facebook.platform.common.provider.PlatformProviderBase 276 | com.facebook.katana/com.facebook.saved.intentfilter.ExternalSaveActivity 277 | com.facebook.orca/com.facebook.messaging.directshare.DirectShareChooserTargetService 278 | com.facebook.orca/com.facebook.messaging.phoneintegration.callupsell.PhoneCallReceiver 279 | com.facebook.orca/com.facebook.messenger.app.MessengerLoggedInUserProvider 280 | com.facebook.orca/com.facebook.messenger.intents.SmsShareIntentHandler 281 | com.facebook.orca/com.facebook.rti.orca.FbnsLiteBroadcastReceiver 282 | com.facebook.orca/com.facebook.rti.orca.UpdateQeBroadcastReceiver 283 | com.facebook.orca/com.facebook.rti.push.service.FbnsService 284 | com.facebook.orca/com.facebook.sms.receiver.SmsLowPriBroadcastReceiver 285 | com.fuiou.mgr/com.baidu.android.pushservice.CommandService 286 | com.fuiou.mgr/com.baidu.android.pushservice.PushService 287 | com.fuiou.mgr/com.baidu.android.pushservice.PushServiceReceiver 288 | com.fuiou.mgr/com.baidu.android.pushservice.RegistrationReceiver 289 | com.fuiou.mgr/com.baidu.location.f 290 | com.fuiou.mgr/com.fuiou.mgr.push.PushMessageReceiver 291 | com.futurefleet.pandabus.ui.dalian/cn.jpush.android.service.PushReceiver 292 | com.futurefleet.pandabus.ui.dalian/com.futurefleet.pandabus2.broadcastReceiver.ConnectivityChangedReceiver 293 | com.google.android.apps.ads.publisher/com.google.android.apps.ads.publisher.widget.LargeWidgetProvider 294 | com.google.android.apps.ads.publisher/com.google.android.apps.ads.publisher.widget.MediumWidgetProvider 295 | com.google.android.apps.ads.publisher/com.google.android.apps.ads.publisher.widget.SmallWidgetProvider 296 | com.google.android.apps.docs/com.google.android.apps.docs.openurl.KixOpenUrlActivityAlias 297 | com.google.android.apps.docs/com.google.android.apps.docs.openurl.PunchOpenUrlActivityAlias 298 | com.google.android.apps.docs/com.google.android.apps.docs.openurl.TrixOpenUrlActivityAlias 299 | com.google.android.apps.maps/com.google.android.apps.gmm.ugc.clientnotification.phototaken.StartPhotoTakenNotifierServiceReceiver 300 | com.google.android.apps.plus/com.google.android.apps.photos.phone.GetContentActivityAlias 301 | com.google.android.apps.plus/com.google.android.apps.photos.phone.SendContentActivityAlias 302 | com.google.android.apps.plus/com.google.android.apps.photos.phone.SetWallpaperActivityAlias 303 | com.google.android.apps.plus/com.google.android.apps.photos.service.GooglePhotoDownsyncService 304 | com.google.android.apps.plus/com.google.android.apps.photos.service.PhotosService 305 | com.google.android.apps.plus/com.google.android.apps.plus.phone.HostPhotoViewIntentActivityAlias 306 | com.google.android.apps.plus/com.google.android.apps.plus.phone.PhotosLegacyLauncherActivity 307 | com.google.android.apps.plus/com.google.android.apps.plus.phone.VideoViewActivityAlias 308 | com.google.android.apps.plus/com.google.android.apps.plus.service.PhotosAppTransitionMonitor 309 | com.google.android.apps.plus/com.google.android.libraries.social.cropper.standaloneactivity.StandaloneCropActivityAlias 310 | com.google.android.apps.plus/com.google.android.libraries.social.ingest.IngestActivity 311 | com.google.android.apps.plus/com.google.android.libraries.social.ingest.IngestService 312 | com.google.android.apps.plus/com.google.android.libraries.social.networkqueue.impl.ConnectivityReceiver 313 | com.google.android.apps.plus/com.google.android.libraries.social.notifications.scheduled.GunsScheduledTaskService 314 | com.google.android.apps.plus/com.google.apps.tiktok.delayedtasks.constraints.oncharger.OnChargerConstraintReceiver_Receiver 315 | com.google.android.apps.plus/com.google.apps.tiktok.sync.constraints.onbatteryokay.OnBatteryOkayConstraintReceiver_Receiver 316 | com.google.android.apps.plus/com.google.apps.tiktok.sync.impl.SyncBootReceiver_Receiver 317 | com.google.android.apps.plus/com.google.apps.tiktok.sync.impl.gcm.SyncGmsPackageUpdatedReceiver_Receiver 318 | com.google.android.calendar/com.google.android.calendar.AllPrefsUpgradeReceiver 319 | com.google.android.calendar/com.google.android.calendar.SyncUpgradeReceiver 320 | com.google.android.gms/com.google.android.gms.ads.identifier.service.AdvertisingIdNotificationService 321 | com.google.android.gms/com.google.android.gms.ads.identifier.service.AdvertisingIdService 322 | com.google.android.gms/com.google.android.gms.auth.account.authenticator.WorkAccountAuthenticatorService 323 | com.google.android.gms/com.google.android.gms.auth.uiflows.addaccount.DmDownloadInstallActivity 324 | com.google.android.gms/com.google.android.gms.autofill.service.AutofillService 325 | com.google.android.gms/com.google.android.gms.autofill.ui.AutofillActivity 326 | com.google.android.gms/com.google.android.gms.autofill.ui.AutofillDialogActivity 327 | com.google.android.gms/com.google.android.gms.autofill.ui.AutofillSettingsActivity 328 | com.google.android.gms/com.google.android.gms.backup.component.BackupOptInActivity 329 | com.google.android.gms/com.google.android.gms.backup.component.D2dMigrateFlowActivity 330 | com.google.android.gms/com.google.android.gms.backup.component.D2dMigrateHelperService 331 | com.google.android.gms/com.google.android.gms.backup.component.D2dMigrateService 332 | com.google.android.gms/com.google.android.gms.backup.component.D2dPreLSourceActivity 333 | com.google.android.gms/com.google.android.gms.backup.component.D2dTransportService 334 | com.google.android.gms/com.google.android.gms.backup.component.EmmRestoreFlowActivity 335 | com.google.android.gms/com.google.android.gms.backup.component.RestoreSessionV0Service 336 | com.google.android.gms/com.google.android.gms.backup.component.UsbDeviceAttachedActivity 337 | com.google.android.gms/com.google.android.gms.car.CarHomeActivity1 338 | com.google.android.gms/com.google.android.gms.car.CarHomeActivity2 339 | com.google.android.gms/com.google.android.gms.checkin.CheckinServiceActiveReceiver 340 | com.google.android.gms/com.google.android.gms.games.chimera.GamesAndroidServiceProxy 341 | com.google.android.gms/com.google.android.gms.games.chimera.GamesAsyncServiceProxy 342 | com.google.android.gms/com.google.android.gms.games.chimera.GamesSignInIntentServiceProxy 343 | com.google.android.gms/com.google.android.gms.games.chimera.GamesSignInServiceProxy 344 | com.google.android.gms/com.google.android.gms.games.chimera.GamesSyncServiceMainProxy 345 | com.google.android.gms/com.google.android.gms.games.chimera.GamesSyncServiceNotificationProxy 346 | com.google.android.gms/com.google.android.gms.games.chimera.GamesUploadServiceProxy 347 | com.google.android.gms/com.google.android.gms.games.chimera.RoomAndroidServiceProxy 348 | com.google.android.gms/com.google.android.gms.games.chimera.SnapshotEventServiceProxy 349 | com.google.android.gms/com.google.android.gms.mdm.receivers.AccountsChangedReceiver 350 | com.google.android.gms/com.google.android.gms.mdm.receivers.ConnectivityReceiver 351 | com.google.android.gms/com.google.android.gms.netrec.scoring.receiver.ScoreNetworksBroadcastReceiver 352 | com.google.android.gms/com.google.android.gms.ocr.CardCaptureActivity 353 | com.google.android.gms/com.google.android.gms.ocr.GiftCardOcrActivity 354 | com.google.android.gms/com.google.android.gms.ocr.SecuredCreditCardOcrActivity 355 | com.google.android.gms/com.google.android.gms.people.pub.PeopleProfileActionGatewayActivity 356 | com.google.android.gms/com.google.android.gms.trustagent.GoogleTrustAgentTrustStatusMonitorSetting 357 | com.google.android.gms/com.google.android.gms.update.SystemUpdateServiceActiveReceiver 358 | com.google.android.googlequicksearchbox/com.android.launcher3.AddItemActivity 359 | com.google.android.googlequicksearchbox/com.android.launcher3.InstallShortcutReceiver 360 | com.google.android.googlequicksearchbox/com.android.launcher3.PackageSessionCommitReceiver 361 | com.google.android.googlequicksearchbox/com.android.launcher3.StartupReceiver 362 | com.google.android.googlequicksearchbox/com.android.launcher3.WallpaperCropActivity 363 | com.google.android.googlequicksearchbox/com.google.android.apps.gsa.launcher.GelWallpaperPickerActivity 364 | com.google.android.googlequicksearchbox/com.google.android.apps.gsa.reflection.ReflectionReceiver 365 | com.google.android.googlequicksearchbox/com.google.android.apps.gsa.staticplugins.opa.EnterOpaActivityEyesLauncher 366 | com.google.android.googlequicksearchbox/com.google.android.apps.gsa.staticplugins.opa.EnterOpaActivityFromAssistantShortcut 367 | com.google.android.googlequicksearchbox/com.google.android.apps.gsa.staticplugins.opa.EnterOpaActivityFromDeeplink 368 | com.google.android.googlequicksearchbox/com.google.android.launcher.GEL 369 | com.google.android.googlequicksearchbox/com.google.android.libraries.flashmanagement.cleardatadetector.DummyReceiver 370 | com.google.android.gsf/com.google.android.gsf.checkin.CheckinService 371 | com.google.android.gsf/com.google.android.gsf.checkin.CheckinService$Receiver 372 | com.google.android.gsf/com.google.android.gsf.checkin.CheckinService$SecretCodeReceiver 373 | com.google.android.gsf/com.google.android.gsf.checkin.CheckinService$TriggerReceiver 374 | com.google.android.gsf/com.google.android.gsf.checkin.EventLogService 375 | com.google.android.gsf/com.google.android.gsf.checkin.EventLogService$Receiver 376 | com.google.android.gsf/com.google.android.gsf.loginservice.MigrateToAccountManagerBroadcastReceiver 377 | com.google.android.gsf/com.google.android.gsf.subscribedfeeds.SubscribedFeedsSyncAdapterService 378 | com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity 379 | com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService 380 | com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver 381 | com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$SecretCodeReceiver 382 | com.google.android.instantapps.supervisor/com.google.android.instantapps.supervisor.SendToBrowserActivity 383 | com.google.android.instantapps.supervisor/com.google.android.instantapps.supervisor.SyncFlagsWakefulReceiver 384 | com.gotokeep.keep/com.gotokeep.keep.broadcast.MiPushReceiver 385 | com.gotokeep.keep/com.gotokeep.keep.service.outdoor.receiver.WakeUpReceiver 386 | com.gotokeep.keep/com.tencent.android.tpush.XGPushReceiver 387 | com.gotokeep.keep/com.xiaomi.mipush.sdk.MessageHandleService 388 | com.gotokeep.keep/com.xiaomi.mipush.sdk.PushMessageHandler 389 | com.gotokeep.keep/com.xiaomi.push.service.XMJobService 390 | com.gotokeep.keep/com.xiaomi.push.service.XMPushService 391 | com.gotokeep.keep/com.xiaomi.push.service.receivers.PingReceiver 392 | com.greenpoint.android.mc10086.activity/com.huawei.android.pushagent.PushEventReceiver 393 | com.greenpoint.android.mc10086.activity/com.leadeon.cmcc.cservice.HWReceiver 394 | com.greenpoint.android.mc10086.activity/com.leadeon.cmcc.cservice.PushBootBroadcastReceiver 395 | com.greenpoint.android.mc10086.activity/com.xiaomi.push.service.XMPushService 396 | com.handsgo.jiakao.android/cn.mucang.android.push.AliPushMessageReceiver 397 | com.handsgo.jiakao.android/cn.mucang.android.push.MucangPushReceiver 398 | com.handsgo.jiakao.android/com.xiaomi.push.service.receivers.PingReceiver 399 | com.handsgo.jiakao.android/io.rong.push.PushReceiver 400 | com.heartide.xinchao.stressandroid/com.heartide.xinchao.stressandroid.receiver.MiPushMessageReceiver 401 | com.heartide.xinchao.stressandroid/com.xiaomi.push.service.receivers.PingReceiver 402 | com.hebao.app/com.xiaomi.push.service.XMPushService 403 | com.hellotalk/com.tencent.android.tpush.XGPushReceiver 404 | com.hellotalk/com.tencent.android.tpush.rpc.XGRemoteService 405 | com.hellotalk/com.tencent.android.tpush.service.XGPushService 406 | com.hellotalk/com.tencent.wns.service.WnsMain 407 | com.hellotalk/com.youdao.sdk.common.YouDaoAppService 408 | com.hellotalk/com.youdao.sdk.common.YouDaoTrackerReceiver 409 | com.hustzp.com.xichuangzhu/com.avos.avoscloud.AVBroadcastReceiver 410 | com.hustzp.com.xichuangzhu/com.hustzp.com.xichuangzhu.push.MyCustomReceiver 411 | com.hustzp.com.xichuangzhu/io.rong.push.PushReceiver 412 | com.hyww.wisdomtree/cn.jpush.android.service.PushReceiver 413 | com.ichano.athome.camera/com.igexin.sdk.PushReceiver 414 | com.iflytek.speechcloud/com.iflytek.speechcloud.TtsService 415 | com.instagram.android/com.instagram.bugreporter.BugReporterService 416 | com.instagram.android/com.instagram.common.analytics.AnalyticsUploadAlarmReceiver 417 | com.instagram.android/com.instagram.debug.memorydump.MemoryDumpUploadService 418 | com.instagram.android/com.instagram.pendingmedia.service.uploadretrypolicy.ConnectivityChangeReceiver 419 | com.instagram.android/com.instagram.share.common.StoryShareHandlerActivity 420 | com.ishowedu.peiyin/cn.jpush.android.service.PushReceiver 421 | com.ishowedu.peiyin/com.ishowedu.peiyin.services.BootUpReceiver 422 | com.ishowedu.peiyin/com.ishowedu.peiyin.thirdparty.XiaoMiPushReceiver 423 | com.ishowedu.peiyin/com.xiaomi.mipush.sdk.PushMessageHandler 424 | com.ishowedu.peiyin/com.xiaomi.push.service.XMPushService 425 | com.ishowedu.peiyin/com.xiaomi.push.service.receivers.PingReceiver 426 | com.ishowedu.peiyin/io.rong.push.PushReceiver 427 | com.jd.jrapp/com.tencent.android.tpush.XGPushReceiver 428 | com.jianshu.haruki/com.baiji.jianshu.ui.receiver.XiaoMiPushReceiver 429 | com.jianshu.haruki/com.igexin.sdk.PushReceiver 430 | com.jianshu.haruki/com.xiaomi.push.service.XMPushService 431 | com.jianshu.haruki/com.xiaomi.push.service.receivers.PingReceiver 432 | com.jiongji.andriod.card/com.baicizhan.client.business.stats.StatInvokeReceiver 433 | com.jiuxianapk.ui/com.igexin.sdk.PushReceiver 434 | com.job.android/com.job.android.business.xiaomipush.XiaoMiMessageReceiver 435 | com.job.android/com.xiaomi.push.service.receivers.PingReceiver 436 | com.kaistart.android/com.igexin.sdk.PushReceiver 437 | com.kingsoft/com.igexin.sdk.PushReceiver 438 | com.kingsoft/com.kingsoft.receiver.StartSelfReceiver 439 | com.kingsoft/com.kingsoft.receiver.mipushMessageReceiver 440 | com.kingsoft/com.xiaomi.push.service.XMPushService 441 | com.kingsoft/com.xiaomi.push.service.receivers.PingReceiver 442 | com.kiwi.android.whiteandroid/com.avos.avoscloud.AVBroadcastReceiver 443 | com.kiwi.android.whiteandroid/com.kiwi.android.whiteandroid.receiver.MyCustomReceiver 444 | com.koudai.weidian.buyer/com.koudai.lib.mipush.XiaomiPushReceiver 445 | com.koudai.weidian.buyer/com.taobao.weex.WXGlobalEventReceiver 446 | com.koudai.weidian.buyer/com.tencent.android.tpush.XGPushReceiver 447 | com.koudai.weidian.buyer/com.xiaomi.push.service.XMPushService 448 | com.koudai.weidian.buyer/com.xiaomi.push.service.receivers.NetworkStatusReceiver 449 | com.koudai.weidian.buyer/com.xiaomi.push.service.receivers.PingReceiver 450 | com.ktls.fileinfo/com.ktls.fileinfo.receiver.UserPresentReceiver 451 | com.liangcang/cn.jpush.android.service.PushReceiver 452 | com.liangcang/com.hyphenate.chat.EMMonitorReceiver 453 | com.linkedin.android/com.linkedin.android.appwidget.ResponsiveWidget$ActiveUserListener 454 | com.linkedin.android/com.linkedin.android.growth.calendar.CalendarUploadReceiver 455 | com.luojilab.player/com.huawei.hms.support.api.push.PushEventReceiver 456 | com.luojilab.player/com.luojilab.netsupport.push.platform.huawei.HWPushMsgReceiver 457 | com.luojilab.player/com.xiaomi.push.service.XMPushService 458 | com.luojilab.player/io.rong.push.PushReceiver 459 | com.medium.reader/com.medium.android.common.net.NetworkChangeReceiver 460 | com.mfashiongallery.emag/com.mfashiongallery.emag.ext_interface.UserPresentReceiver 461 | com.mfashiongallery.emag/com.mfashiongallery.emag.push.MiFGPushReceiver 462 | com.mfashiongallery.emag/com.xiaomi.push.service.receivers.NetworkStatusReceiver 463 | com.mfashiongallery.emag/com.xiaomi.push.service.receivers.PingReceiver 464 | com.mfw.roadbook/com.huawei.hms.support.api.push.PushEventReceiver 465 | com.mfw.roadbook/com.mfw.roadbook.push.huawei.HuaweiPushReceiver 466 | com.mfw.roadbook/com.mfw.roadbook.push.mipush.MiPushReceiver 467 | com.mfw.roadbook/com.xiaomi.push.service.XMPushService 468 | com.mfw.roadbook/com.xiaomi.push.service.receivers.PingReceiver 469 | com.mi.liveassistant/com.mi.milink.sdk.receiver.AlarmReceiver 470 | com.mi.liveassistant/com.mi.milink.sdk.receiver.NetworkReceiver 471 | com.mi.liveassistant/com.wali.live.receiver.NetworkReceiver 472 | com.mi.misupport/com.mi.misupport.receiver.WIFIReceiver 473 | com.microsoft.cortana/com.microsoft.bing.dss.servicelib.client.DssServiceReceiver 474 | com.microsoft.todos/com.microsoft.todos.sync.AlarmSyncBootReceiver 475 | com.mipay.wallet/com.mipay.bill.BillReceiver 476 | com.mipay.wallet/com.mipay.bill.alarm.RepayAlarmReceiver 477 | com.mipay.wallet/com.mipay.identity.provider.SdkIdentityProvider 478 | com.mipay.wallet/com.mipay.push.MipayPushMessageReceiver 479 | com.mipay.wallet/com.mipay.sms.local.SmsReceiver 480 | com.mipay.wallet/com.xiaomi.push.service.receivers.NetworkStatusReceiver 481 | com.mipay.wallet/com.xiaomi.push.service.receivers.PingReceiver 482 | com.miui.analytics/com.miui.analytics.AnalyticsReceiver 483 | com.miui.bugreport/com.miui.bugreport.receiver.BugreportPushMessageReceiver 484 | com.miui.bugreport/com.miui.bugreport.receiver.FeedbackReceiver 485 | com.miui.bugreport/com.xiaomi.push.service.receivers.NetworkStatusReceiver 486 | com.miui.bugreport/com.xiaomi.push.service.receivers.PingReceiver 487 | com.miui.cleanmaster/com.miui.optimizecenter.CleanMasterReceiver 488 | com.miui.cloudservice/com.xiaomi.push.service.XMPushService 489 | com.miui.gallery/com.miui.gallery.cloud.MiCloudStatusInfoReceiver 490 | com.miui.klo.bugreport/com.miui.klo.bugreport.mipush.MiPushMessageReceiver 491 | com.miui.klo.bugreport/com.miui.klo.bugreport.receiver.KLOStartupReceiver 492 | com.miui.klo.bugreport/com.xiaomi.push.service.receivers.NetworkStatusReceiver 493 | com.miui.klo.bugreport/com.xiaomi.push.service.receivers.PingReceiver 494 | com.miui.miuibbs/com.xiaomi.mipush.sdk.MessageHandleService 495 | com.miui.miuibbs/com.xiaomi.mipush.sdk.PushMessageHandler 496 | com.miui.miuibbs/com.xiaomi.push.service.XMJobService 497 | com.miui.miuibbs/com.xiaomi.push.service.XMPushService 498 | com.miui.miuibbs/com.xiaomi.push.service.receivers.NetworkStatusReceiver 499 | com.miui.miuibbs/com.xiaomi.push.service.receivers.PingReceiver 500 | com.miui.player/com.android.providers.downloads.receiver.DownloadReceiver 501 | com.miui.player/com.miui.player.push.MiuiPushMessageReceiver 502 | com.miui.player/com.miui.player.push.MiuiPushMessageService 503 | com.miui.player/com.miui.player.receiver.MarketInstallServiceReceiver 504 | com.miui.player/com.xiaomi.push.service.XMPushService 505 | com.miui.player/com.xiaomi.push.service.receivers.PingReceiver 506 | com.miui.powerkeeper/com.miui.powerkeeper.PowerKeeperReceiver 507 | com.miui.powerkeeper/com.miui.powerkeeper.cloudcontrol.CloudUpdateReceiver 508 | com.miui.powerkeeper/com.miui.powerkeeper.mipush.MiPushMessageReceiver 509 | com.miui.powerkeeper/com.xiaomi.push.service.receivers.PingReceiver 510 | com.miui.systemAdSolution/com.xiaomi.ad.internal.mipush.MiPushMessageReceiver 511 | com.miui.systemAdSolution/com.xiaomi.ad.server.AdReceiver 512 | com.miui.systemAdSolution/com.xiaomi.push.service.XMPushService 513 | com.miui.systemAdSolution/com.xiaomi.push.service.receivers.PingReceiver 514 | com.miui.video.plugin/com.miui.video.plugin.push.MediaPushMessageReceiver 515 | com.miui.video.plugin/com.xiaomi.push.service.XMPushService 516 | com.miui.video/com.miui.video.VReceiver 517 | com.miui.video/com.miui.video.common.launcher.download.AdApkDownloadTaskUseMM$DownloadReceiver 518 | com.miui.video/com.miui.video.push.MediaPushMessageReceiver 519 | com.miui.video/com.xiaomi.push.service.XMPushService 520 | com.miui.video/com.xiaomi.push.service.receivers.NetworkStatusReceiver 521 | com.miui.video/com.xiaomi.push.service.receivers.PingReceiver 522 | com.miui.weather2/com.xiaomi.push.service.XMPushService 523 | com.miui.yellowpage/com.miui.yellowpage.sync.PushMessageReceiver 524 | com.miui.yellowpage/com.xiaomi.push.service.XMPushService 525 | com.mobileuncle.toolhero/com.mobileuncle.toolhero.utils.CommonReceiver 526 | com.mobisystems.editor.office_registered/com.mobisystems.office.io.NetworkChangeReceiver 527 | com.mobisystems.editor.office_registered/com.mobisystems.office.search.FileSearchProvider 528 | com.netease.cloudmusic/com.alipay.sdk.app.H5PayActivity 529 | com.netease.cloudmusic/com.alipay.sdk.auth.AuthActivity 530 | com.netease.cloudmusic/com.huawei.android.pushagent.PushBootReceiver 531 | com.netease.cloudmusic/com.huawei.android.pushagent.PushEventReceiver 532 | com.netease.cloudmusic/com.netease.cloudmusic.activity.MyPrivateCloudUploadActivity 533 | com.netease.cloudmusic/com.netease.cloudmusic.activity.ProgramUploadActivity 534 | com.netease.cloudmusic/com.netease.cloudmusic.activity.UploadMusicActivity 535 | com.netease.cloudmusic/com.netease.cloudmusic.module.push.receiver.HuaweiPushReceiver 536 | com.netease.cloudmusic/com.netease.cloudmusic.module.push.receiver.MiPushMessageReceiver 537 | com.netease.cloudmusic/com.xiaomi.push.service.XMPushService 538 | com.netease.cloudmusic/com.xiaomi.push.service.receivers.PingReceiver 539 | com.oasisfeng.greenify.pro/com.oasisfeng.greenify.pro.PilotActivity 540 | com.paypal.android.p2pmobile/com.paypal.android.p2pmobile.instorepay.service.NfcPaymentService 541 | com.qianyan.eudic/io.rong.push.PushReceiver 542 | com.qingsongchou.social/cn.jpush.android.service.PushReceiver 543 | com.qingsongchou.social/io.rong.push.PushReceiver 544 | com.qiyi.video/com.xiaomi.mipush.sdk.PushMessageHandler 545 | com.qiyi.video/com.xiaomi.push.service.XMPushService 546 | com.qiyi.video/com.xiaomi.push.service.receivers.PingReceiver 547 | com.qiyi.video/org.qiyi.android.commonphonepad.pushmessage.huawei.HWPushMessageReceiver 548 | com.qiyi.video/org.qiyi.android.commonphonepad.pushmessage.xiaomi.XiaoMiPushMessageReceive 549 | com.quvideo.xiaoying/com.quvideo.xiaoying.pushclient.XMPushReceiver 550 | com.quvideo.xiaoying/com.xiaomi.push.service.XMPushService 551 | com.quvideo.xiaoying/com.xiaomi.push.service.receivers.PingReceiver 552 | com.quvideo.xiaoying/io.rong.push.PushReceiver 553 | com.recorder.snipback/com.google.android.gms.ads.AdActivity 554 | com.recorder.snipback/com.google.android.gms.ads.purchase.InAppPurchaseActivity 555 | com.rjfittime.app/com.igexin.sdk.PushReceiver 556 | com.ruguoapp.jike/com.huawei.hms.support.api.push.PushEventReceiver 557 | com.ruguoapp.jike/com.ruguoapp.jike.PureBackground 558 | com.ruguoapp.jike/com.ruguoapp.jike.push.hw.HwPushReceiver 559 | com.ruguoapp.jike/com.ruguoapp.jike.push.mi.MiPushReceiver 560 | com.ruguoapp.jike/com.xiaomi.push.service.XMPushService 561 | com.ruguoapp.jike/com.xiaomi.push.service.receivers.PingReceiver 562 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.HWPushMessageReceiver 563 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.MiPushMessageReceiver 564 | com.sankuai.meituan.takeoutnew/com.huawei.android.pushagent.PushEventReceiver 565 | com.sankuai.meituan.takeoutnew/com.xiaomi.push.service.XMPushService 566 | com.sankuai.meituan.takeoutnew/com.xiaomi.push.service.receivers.PingReceiver 567 | com.sankuai.meituan/com.sankuai.meituan.launcherbadge.UserPresentReceiver 568 | com.sdu.didi.psnger/com.didi.sdk.push.xiaomi.MiPushReceiver 569 | com.sdu.didi.psnger/com.igexin.sdk.PushReceiver 570 | com.sdu.didi.psnger/com.igexin.sdk.PushService 571 | com.sdu.didi.psnger/com.xiaomi.push.service.XMPushService 572 | com.sdu.didi.psnger/com.xiaomi.push.service.receivers.PingReceiver 573 | com.securespaces.android.agent/com.securespaces.android.agent.debug.ActivityDebug 574 | com.securespaces.android.ssm.service/com.securespaces.android.ssm.service.provisioning.OneTimeSpaceInitService 575 | com.shanbay.words/com.shanbay.words.push.MiPushBroadcastReceiver 576 | com.shanbay.words/com.xiaomi.push.service.receivers.PingReceiver 577 | com.shouzhang.com/com.shouzhang.com.common.receiver.AppReceiver 578 | com.shouzhang.com/com.taobao.accs.EventReceiver 579 | com.sina.vdun/com.sina.vdun.receiver.BootReceiver 580 | com.sina.weibo/be.ppareit.swiftp.FtpServerService 581 | com.sina.weibo/com.alibaba.baichuan.android.auth.AlibcAuthActivity 582 | com.sina.weibo/com.alibaba.baichuan.android.trade.ui.activity.AlibcNativeTaobaoActivity 583 | com.sina.weibo/com.alibaba.baichuan.android.trade.ui.activity.AlibcWebViewActivity 584 | com.sina.weibo/com.alipay.android.app.MspService 585 | com.sina.weibo/com.alipay.android.app.pay.HyperlinkActivity 586 | com.sina.weibo/com.alipay.android.app.pay.MainActivity 587 | com.sina.weibo/com.alipay.android.app.pay.MiniLaucherActivity 588 | com.sina.weibo/com.alipay.android.app.pay.PageForBrowser 589 | com.sina.weibo/com.alipay.android.app.pay.TransContainer 590 | com.sina.weibo/com.alipay.android.app.ui.quickpay.window.MiniPayActivity 591 | com.sina.weibo/com.alipay.android.app.ui.quickpay.window.MiniWebActivity 592 | com.sina.weibo/com.alipay.mobile.command.trigger.WebViewTrigger 593 | com.sina.weibo/com.alipay.notify.poll.config.ConfigService 594 | com.sina.weibo/com.alipay.notify.push.NotificationService 595 | com.sina.weibo/com.alipay.notify.report.PushDistributer 596 | com.sina.weibo/com.huawei.android.pushagent.PushBootReceiver 597 | com.sina.weibo/com.huawei.android.pushagent.PushEventReceiver 598 | com.sina.weibo/com.huawei.android.pushagent.PushService 599 | com.sina.weibo/com.meizu.cloud.pushsdk.NotificationService 600 | com.sina.weibo/com.meizu.cloud.pushsdk.SystemReceiver 601 | com.sina.weibo/com.morgoo.droidplugin.PluginManagerService 602 | com.sina.weibo/com.sina.weibo.VersionUpdateActivity 603 | com.sina.weibo/com.sina.weibo.appmarket.activity.AdAppInfoActivity 604 | com.sina.weibo/com.sina.weibo.appmarket.activity.AppUpdatePageActivity 605 | com.sina.weibo/com.sina.weibo.appmarket.service.AppMarketService 606 | com.sina.weibo/com.sina.weibo.gowidget.GoWidgetProvider 607 | com.sina.weibo/com.sina.weibo.gowidget.GoWidgetProvider$GoWidgetKeepLiveService 608 | com.sina.weibo/com.sina.weibo.gowidget.GoWidgetService 609 | com.sina.weibo/com.sina.weibo.oem.hwtouch.HuaweiQuickActionService 610 | com.sina.weibo/com.sina.weibo.page.AlipayCardListActivity 611 | com.sina.weibo/com.sina.weibo.push.syschannel.huawei.HUAWEIMessageReceiver 612 | com.sina.weibo/com.sina.weibo.push.syschannel.letv.LETVPushIntentService 613 | com.sina.weibo/com.sina.weibo.push.syschannel.letv.LETVReceiver 614 | com.sina.weibo/com.sina.weibo.push.syschannel.letv.WeakMessageReceiver 615 | com.sina.weibo/com.sina.weibo.push.syschannel.meizu.MeizuMessageReceiver 616 | com.sina.weibo/com.sina.weibo.push.syschannel.miui.MIUIMessageReceiver 617 | com.sina.weibo/com.sina.weibo.statistic.log.uploadmanager.UploadLogReceiver 618 | com.sina.weibo/com.weibo.mobileads.view.AdActivity 619 | com.sina.weibo/com.xiaomi.mipush.sdk.MessageHandleService 620 | com.sina.weibo/com.xiaomi.mipush.sdk.PushMessageHandler 621 | com.sina.weibo/com.xiaomi.push.service.XMJobService 622 | com.sina.weibo/com.xiaomi.push.service.XMPushService 623 | com.sina.weibo/com.xiaomi.push.service.receivers.NetworkStatusReceiver 624 | com.sina.weibo/com.xiaomi.push.service.receivers.PingReceiver 625 | com.sina.weibo/mtopsdk.xstate.XStateService 626 | com.sina.weibo/tv.xiaoka.play.service.ChatService 627 | com.sina.weibo/tv.xiaoka.play.service.DownloadGiftServer 628 | com.smzdm.client.android/com.smzdm.client.android.receiver.XiaoMiPushMessageReceiver 629 | com.smzdm.client.android/com.xiaomi.push.service.XMPushService 630 | com.smzdm.client.android/com.xiaomi.push.service.receivers.PingReceiver 631 | com.snapchat.android/com.snapchat.spectacles.laguna.service.LagunaWakefulReceiver 632 | com.sohu.inputmethod.sogou.xiaomi/com.sohu.inputmethod.settings.SystemDirectBootUnlockedReceiver 633 | com.sohu.inputmethod.sogou.xiaomi/com.sohu.inputmethod.settings.status.TrafficMonitorReceiver 634 | com.sololearn.cplusplus/com.sololearn.app.xapp.XAppReceiver 635 | com.taobao.idlefish/com.taobao.accs.EventReceiver 636 | com.taobao.idlefish/com.xiaomi.mipush.sdk.PushMessageHandler 637 | com.taobao.idlefish/org.android.agoo.huawei.HuaWeiReceiver 638 | com.taobao.movie.android/com.taobao.accs.EventReceiver 639 | com.taobao.movie.android/org.android.agoo.huawei.HuaWeiReceiver 640 | com.taobao.movie.android/org.android.agoo.xiaomi.MiPushBroadcastReceiver 641 | com.taobao.qianniu/com.alibaba.hwpush.HWPushReceiver 642 | com.taobao.qianniu/com.alibaba.mipush.MiPushMessageReceiver 643 | com.taobao.qianniu/com.huawei.android.pushagent.PushEventReceiver 644 | com.taobao.qianniu/com.taobao.qianniu.receiver.RebirthReceiver 645 | com.taobao.qianniu/com.taobao.qianniu.receiver.mipush.MiMessageReceiver 646 | com.taobao.qianniu/com.xiaomi.push.service.receivers.PingReceiver 647 | com.taobao.taobao/com.taobao.accs.EventReceiver 648 | com.taobao.taobao/org.android.agoo.huawei.HuaWeiReceiver 649 | com.taobao.taobao/org.android.agoo.xiaomi.MiPushBroadcastReceiver 650 | com.tencent.karaoke/com.huawei.android.pushagent.PushBootReceiver 651 | com.tencent.karaoke/com.huawei.android.pushagent.PushEventReceiver 652 | com.tencent.karaoke/com.huawei.android.pushagent.PushService 653 | com.tencent.karaoke/com.tencent.component.thirdpartypush.huaweipush.HWPushReceiver 654 | com.tencent.karaoke/com.tencent.component.thirdpartypush.mipush.MiPushReceiver 655 | com.tencent.karaoke/com.xiaomi.mipush.sdk.MessageHandleService 656 | com.tencent.karaoke/com.xiaomi.mipush.sdk.PushMessageHandler 657 | com.tencent.karaoke/com.xiaomi.push.service.XMPushService 658 | com.tencent.karaoke/com.xiaomi.push.service.receivers.PingReceiver 659 | com.tencent.mm/com.tencent.mm.crash.CrashUploaderService 660 | com.tencent.mm/com.tencent.mm.modelfriend.AddrBookObserver$AddrBookService 661 | com.tencent.mm/com.tencent.mm.plugin.accountsync.model.AccountAuthenticatorService 662 | com.tencent.mm/com.tencent.mm.plugin.accountsync.model.ContactsSyncService 663 | com.tencent.mm/com.tencent.mm.plugin.accountsync.ui.ShareToFacebookRedirectUI 664 | com.tencent.mm/com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver 665 | com.tencent.mm/com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver1 666 | com.tencent.mm/com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver2 667 | com.tencent.mm/com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver3 668 | com.tencent.mm/com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver4 669 | com.tencent.mm/com.tencent.mm.plugin.backup.backuppcmodel.BackupPcService 670 | com.tencent.mm/com.tencent.mm.plugin.backup.bakoldlogic.bakoldmodel.BakOldUSBService 671 | com.tencent.mm/com.tencent.mm.plugin.backup.bakoldlogic.bakoldmovemodel.MoveService 672 | com.tencent.mm/com.tencent.mm.plugin.backup.bakoldlogic.bakoldpcmodel.BakchatPcUsbService 673 | com.tencent.mm/com.tencent.mm.plugin.exdevice.ui.ExdeviceConnectWifiUI 674 | com.tencent.mm/com.tencent.mm.plugin.facedetect.service.FaceDetectProcessService 675 | com.tencent.mm/com.tencent.mm.plugin.facedetect.service.FaceUploadVideoService 676 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiActivateAuthStateUI 677 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiAuthStateUI 678 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiCopyPwdUI 679 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiEntryUI 680 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiErrorUI 681 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiFrontPageUI 682 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiIntroductionUI 683 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiMIGNoAuthStateUI 684 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiManufacturerLoadingUI 685 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiNetCheckUI 686 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiNoWifiUI 687 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiOwnerUI 688 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiPcUI 689 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiSuccUI 690 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiSuccWebViewUI 691 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreeWifiTestActivity 692 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreewifiActivateWeChatNoAuthStateUI 693 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.FreewifiWeChatNoAuthStateUI 694 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.ProtocolThreeOneUI 695 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.ProtocolThreeThreeUI 696 | com.tencent.mm/com.tencent.mm.plugin.freewifi.ui.ProtocolThreeTwoUI 697 | com.tencent.mm/com.tencent.mm.plugin.game.gamewebview.ipc.GameWebViewMainProcessService 698 | com.tencent.mm/com.tencent.mm.plugin.game.gamewebview.ui.GameIpcProxyUI 699 | com.tencent.mm/com.tencent.mm.plugin.game.gamewebview.ui.GameWebViewUI 700 | com.tencent.mm/com.tencent.mm.plugin.game.ui.AuthorizedGameListUI 701 | com.tencent.mm/com.tencent.mm.plugin.game.ui.CreateOrJoinChatroomUI 702 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameCategoryUI 703 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameCenterUI 704 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameCenterUI2 705 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDetailInfoUI 706 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDetailRankLikedUI 707 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDetailRankUI 708 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDetailUI 709 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDetailUI2 710 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameDownloadTipsUI 711 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameGalleryUI 712 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameGestureGalleryUI 713 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameIndexUI 714 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameLibraryUI 715 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameMD5CheckUI 716 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameMessageUI 717 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameNewIntroductionUI 718 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameRankMsgUI 719 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameRankUI 720 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameRegionSelectUI 721 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameSearchUI 722 | com.tencent.mm/com.tencent.mm.plugin.game.ui.GameSettingsUI 723 | com.tencent.mm/com.tencent.mm.plugin.qqmail.stub.QQMailStubProxyUI 724 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.AttachDownloadPage 725 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.ComposeUI 726 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.CompressPreviewUI 727 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.MailAddrListUI 728 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.MailAddrProfileUI 729 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.MailImageDownloadUI 730 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.MailWebViewUI 731 | com.tencent.mm/com.tencent.mm.plugin.qqmail.ui.ReadMailUI 732 | com.tencent.mm/com.tencent.mm.plugin.shake.shakemedia.ui.ShakeTVDetailUI 733 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeItemListUI 734 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeMsgListUI 735 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeNewYearReportUI 736 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakePersonalInfoUI 737 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeReportUI 738 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeSayHiListUI 739 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.ShakeTvHistoryListUI 740 | com.tencent.mm/com.tencent.mm.plugin.shake.ui.TVInfoUI 741 | com.tencent.mm/com.tencent.mm.plugin.sport.service.SportService 742 | com.tencent.mm/com.tencent.mm.plugin.subapp.jdbiz.JDRemindDialog 743 | com.tencent.mm/com.tencent.mm.plugin.wear.model.service.WearDataLayerService 744 | com.tencent.mm/com.tencent.mm.plugin.webview.ui.tools.game.GameChattingRoomWebViewUI 745 | com.tencent.mm/com.tencent.mm.plugin.webview.ui.tools.game.GameWebViewUI 746 | com.tencent.mm/com.tencent.mm.plugin.webview.ui.tools.game.H5GameWebViewUI 747 | com.tencent.mm/com.tencent.mm.sandbox.monitor.CrashUploadAlarmReceiver 748 | com.tencent.mm/com.tencent.mm.sandbox.updater.AppInstallerUI 749 | com.tencent.mm/com.tencent.mm.sandbox.updater.AppUpdaterUI 750 | com.tencent.mm/com.tencent.mm.sandbox.updater.UpdaterService 751 | com.tencent.mm/com.tencent.mm.ui.account.BindFacebookUI 752 | com.tencent.mm/com.tencent.mm.ui.account.FacebookAuthUI 753 | com.tencent.mm/com.tencent.mm.ui.account.FacebookFriendUI 754 | com.tencent.mm/com.tencent.mm.ui.account.FacebookLoginUI 755 | com.tencent.mm/com.tencent.mm.ui.account.RegByFacebookSetPwdUI 756 | com.tencent.mm/com.tencent.mm.ui.bindgooglecontact.BindGoogleContactIntroUI 757 | com.tencent.mm/com.tencent.mm.ui.bindgooglecontact.BindGoogleContactUI 758 | com.tencent.mm/com.tencent.mm.ui.bindgooglecontact.GoogleFriendUI 759 | com.tencent.mm/com.tencent.mm.ui.bindlinkedin.BindLinkedInUI 760 | com.tencent.mm/com.tencent.mm.ui.friend.InviteFacebookFriendsUI 761 | com.tencent.mm/com.tencent.recovery.wx.service.WXRecoveryUploadService 762 | com.tencent.mobileqq/com.tencent.mobileqq.msf.core.NetConnInfoCenter 763 | com.tencent.tmgp.lordofdark/com.tencent.android.tpush.XGPushReceiver 764 | com.tencent.weread/com.huawei.hms.support.api.push.PushEventReceiver 765 | com.tencent.weread/com.tencent.weread.push.DismissNotificationBroadCast 766 | com.tencent.weread/com.tencent.weread.push.NotifyService 767 | com.tencent.weread/com.tencent.weread.push.huawei.HWPushReceiver 768 | com.tencent.weread/com.tencent.weread.push.syncadapter.WRAuthenticatorService 769 | com.tencent.weread/com.tencent.weread.push.syncadapter.WRSyncService 770 | com.tencent.weread/com.tencent.weread.receiver.SmartisanReceiver 771 | com.tumblr/com.htc.blinkfeed.service.BlinkFeedPluginService 772 | com.umetrip.android.msky.app/com.huawei.android.pushagent.PushEventReceiver 773 | com.umetrip.android.msky.app/com.umetrip.android.msky.app.module.flightsubscribe.HuaweiAttentionReceiver 774 | com.umetrip.android.msky.app/com.umetrip.android.msky.app.module.push.HuaweiMessageReceiver 775 | com.umetrip.android.msky.app/com.umetrip.android.msky.push.NotificationService 776 | com.umetrip.android.msky.app/com.xiaomi.push.service.XMPushService 777 | com.unionpay/com.huawei.android.pushagent.PushBootReceiver 778 | com.unionpay/com.huawei.android.pushagent.PushEventReceiver 779 | com.unionpay/com.unionpay.push.receiver.huawei.UPPushEventReceiverHuawei 780 | com.unionpay/com.xiaomi.push.service.XMPushService 781 | com.unnoo.quan/com.xiaomi.push.service.XMPushService 782 | com.urbandroid.sleep/com.urbandroid.sleep.appwidget.AlarmWidget 783 | com.urbandroid.sleep/com.urbandroid.sleep.appwidget.DroidWidget 784 | com.urbandroid.sleep/com.urbandroid.sleep.appwidget.KeyguardDroidWidget 785 | com.urbandroid.sleep/com.urbandroid.sleep.appwidget.SleepWidget 786 | com.wali.live/com.mi.milink.sdk.receiver.AlarmReceiver 787 | com.wali.live/com.wali.live.tpl.TplMiPushMessageReceiver 788 | com.wali.live/com.xiaomi.push.service.XMPushService 789 | com.wali.live/com.xiaomi.push.service.receivers.PingReceiver 790 | com.wandoujia.phoenix2/com.taobao.accs.EventReceiver 791 | com.wandoujia.phoenix2/com.wandoujia.jupiter.floatwindow.KeepLiveReceiver 792 | com.wuba/com.wuba.push.NotificationReceiver 793 | com.wuba/com.wuba.push.PhoneStateReceiver 794 | com.wuba/com.xiaomi.push.service.receivers.NetworkStatusReceiver 795 | com.wuba/com.xiaomi.push.service.receivers.PingReceiver 796 | com.xda.labs/com.xda.labs.CopyTextActivity 797 | com.xda.labs/com.xda.labs.ForumLauncher 798 | com.xiangkan.android/com.xiangkan.android.common.push.MiMessageReceiver 799 | com.xiangkan.android/com.xiaomi.push.service.XMPushService 800 | com.xiangkan.android/com.xiaomi.push.service.receivers.PingReceiver 801 | com.xiaomi.channel/com.mi.milink.sdk.receiver.AlarmReceiver 802 | com.xiaomi.gamecenter.sdk.service/com.xiaomi.mipush.sdk.PushServiceReceiver 803 | com.xiaomi.gamecenter.sdk.service/com.xiaomi.push.service.receivers.NetworkStatusReceiver 804 | com.xiaomi.gamecenter.sdk.service/com.xiaomi.push.service.receivers.PingReceiver 805 | com.xiaomi.gamecenter/com.mi.milink.sdk.receiver.AlarmReceiver 806 | com.xiaomi.gamecenter/com.xiaomi.gamecenter.push.GameCenterPushMessageReceiver 807 | com.xiaomi.gamecenter/com.xiaomi.gamecenter.service.GlobalReceiver 808 | com.xiaomi.gamecenter/com.xiaomi.push.service.XMPushService 809 | com.xiaomi.gamecenter/com.xiaomi.push.service.receivers.PingReceiver 810 | com.xiaomi.joyose/com.xiaomi.joyose.smartop.SmartOpService 811 | com.xiaomi.joyose/com.xiaomi.joyose.stepsprovider.StepsService 812 | com.xiaomi.jr/com.xiaomi.jr.common.NetworkStatusReceiver 813 | com.xiaomi.jr/com.xiaomi.jr.mipush.MiPushMessageBroadcastReceiver 814 | com.xiaomi.jr/com.xiaomi.push.service.XMPushService 815 | com.xiaomi.jr/com.xiaomi.push.service.receivers.NetworkStatusReceiver 816 | com.xiaomi.jr/com.xiaomi.push.service.receivers.PingReceiver 817 | com.xiaomi.midrop/com.xiaomi.midrop.startup.StartupReceiver 818 | com.xiaomi.mimobile/com.xiaomi.mimobile.MiMobileMessageReceiver 819 | com.xiaomi.mimobile/com.xiaomi.push.service.XMPushService 820 | com.xiaomi.mimobile/com.xiaomi.push.service.receivers.NetworkStatusReceiver 821 | com.xiaomi.mimobile/com.xiaomi.push.service.receivers.PingReceiver 822 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.mitv.phone.tvassistant.push.MyPushReceiverV3 823 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.push.service.XMPushService 824 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.push.service.receivers.PingReceiver 825 | com.xiaomi.o2o/com.xiaomi.o2o.push.O2OMessageReceiver 826 | com.xiaomi.o2o/com.xiaomi.push.service.XMPushService 827 | com.xiaomi.o2o/com.xiaomi.push.service.receivers.NetworkStatusReceiver 828 | com.xiaomi.o2o/com.xiaomi.push.service.receivers.PingReceiver 829 | com.xiaomi.oga/com.xiaomi.push.service.XMPushService 830 | com.xiaomi.pass/com.xiaomi.pass.PassMessageReceiver 831 | com.xiaomi.pass/com.xiaomi.pass.receiver.NetWorkChangeReceiver 832 | com.xiaomi.pass/com.xiaomi.push.service.receivers.NetworkStatusReceiver 833 | com.xiaomi.payment/com.xiaomi.push.service.receivers.NetworkStatusReceiver 834 | com.xiaomi.shop/com.xiaomi.push.service.XMPushService 835 | com.xiaomi.shop/com.xiaomi.push.service.receivers.NetworkStatusReceiver 836 | com.xiaomi.shop/com.xiaomi.push.service.receivers.PingReceiver 837 | com.xiaomi.shop/com.xiaomi.shop2.ShopPushMessageReceiver 838 | com.xiaomi.smarthome/com.xiaomi.push.service.XMPushService 839 | com.xiaomi.smarthome/com.xiaomi.push.service.receivers.PingReceiver 840 | com.xiaomi.smarthome/com.xiaomi.smarthome.framework.push.PushReceiver 841 | com.ximalaya.ting.android/com.igexin.sdk.PushService 842 | com.ximalaya.ting.android/com.xiaomi.push.service.XMPushService 843 | com.ximalaya.ting.android/com.xiaomi.push.service.receivers.NetworkStatusReceiver 844 | com.ximalaya.ting.android/com.xiaomi.push.service.receivers.PingReceiver 845 | com.ximalaya.ting.android/com.ximalaya.ting.android.broadcast.XiaomiPushReceiver 846 | com.ximalaya.ting.android/com.ximalaya.ting.android.receiver.NetWorkChangeReceiver 847 | com.xingin.xhs/com.taobao.accs.EventReceiver 848 | com.xingin.xhs/com.xiaomi.push.service.XMPushService 849 | com.xingin.xhs/com.xiaomi.push.service.receivers.PingReceiver 850 | com.xingin.xhs/com.xingin.xhs.push.MIPushMessageReceiver 851 | com.xunlei.downloadprovider/com.huawei.hms.support.api.push.PushEventReceiver 852 | com.xunlei.downloadprovider/com.xiaomi.push.service.XMPushService 853 | com.xunlei.downloadprovider/com.xiaomi.push.service.receivers.PingReceiver 854 | com.xunlei.downloadprovider/com.xunlei.downloadprovider.pushmessage.huawei.HuaweiPushReceiver 855 | com.xunlei.downloadprovider/com.xunlei.downloadprovider.pushmessage.xiaomi.XiaoMiPushReceiver 856 | com.xvideostudio.videoeditor/com.taobao.accs.EventReceiver 857 | com.xvideostudio.videoeditor/com.xvideostudio.videoeditor.receiver.BootCompleteReceiver 858 | com.yandex.browser/com.yandex.browser.customtab.CustomTabConnectionService 859 | com.yandex.browser/com.yandex.watchman.lib.internal.components.ConfigService 860 | com.yandex.browser/com.yandex.watchman.lib.internal.components.ReplacedReceiver 861 | com.yibasan.lizhifm/com.huawei.hms.support.api.push.PushEventReceiver 862 | com.yibasan.lizhifm/com.igexin.sdk.PushReceiver 863 | com.yibasan.lizhifm/com.igexin.sdk.PushService 864 | com.yibasan.lizhifm/com.xiaomi.push.service.XMPushService 865 | com.yibasan.lizhifm/com.xiaomi.push.service.receivers.PingReceiver 866 | com.yibasan.lizhifm/com.yibasan.lizhifm.boot.LZReceivers$BootReceiver 867 | com.yibasan.lizhifm/com.yibasan.lizhifm.sdk.huaweipush.HuaweiPushReceiver 868 | com.yibasan.lizhifm/com.yibasan.lizhifm.sdk.xiaomipush.XiaomiMessageReceiver 869 | com.yibasan.lizhifm/io.rong.push.PushReceiver 870 | com.yidian.xiaomi/com.taobao.accs.EventReceiver 871 | com.yidian.xiaomi/com.xiaomi.push.service.receivers.PingReceiver 872 | com.yidian.xiaomi/com.yidian.news.push.YdPushMessageReceiver 873 | com.yidian.xiaomi/com.yidian.news.util.fetchnews.WakeReceiver 874 | com.yxkj.jysq/com.tencent.android.tpush.XGPushReceiver 875 | com.zecurisoft.mhc1411/com.amazon.inapp.purchasing.ResponseReceiver 876 | com.zecurisoft.mhc1411/com.jobernowl.MyDownloadService 877 | com.zecurisoft.mhc1411/com.zecurisoft.mhc.billing.InAppBillingActivity 878 | com.zecurisoft.mhc1411/com.zecurisoft.mhc.billing.UpgradeActivity 879 | com.zecurisoft.mhc1411/com.zecurisoft.mhc.billing.WebsiteBillingActivity 880 | com.zhaopin.social/com.igexin.sdk.PushReceiver 881 | com.zhihu.android/com.huawei.hms.activity.BridgeActivity 882 | com.zhihu.android/com.huawei.hms.support.api.push.PushEventReceiver 883 | com.zhihu.android/com.xiaomi.push.service.XMPushService 884 | com.zhihu.android/com.zhihu.android.push.huawei.HuaweiMessageReceiver 885 | com.zhihu.android/com.zhihu.android.push.receiver.AliasAVBroadcastReceiver 886 | com.zhihu.circlely.android/com.avos.avoscloud.AVBroadcastReceiver 887 | com.zhihu.circlely.android/com.zhihu.circlely.android.push.PushReceiver 888 | ctrip.android.view/com.huawei.hms.support.api.push.PushEventReceiver 889 | ctrip.android.view/ctrip.android.pushsdk.DaemonReceiver 890 | ctrip.android.view/ctrip.android.pushsdk.PushService 891 | ctrip.android.view/ctrip.android.pushsdkv2.receiver.HWPushRecevier 892 | ctrip.android.view/ctrip.android.pushsdkv2.receiver.XiaoMiPushReceiver 893 | fm.xiami.main/com.taobao.accs.EventReceiver 894 | fm.xiami.main/org.android.agoo.huawei.HuaWeiReceiver 895 | fm.xiami.main/org.android.agoo.xiaomi.MiPushBroadcastReceiver 896 | jp.naver.line.android/jp.naver.line.android.service.share.DirectShareChatChooserTargetService 897 | net.luoo.LuooFM/cn.jpush.android.service.PushReceiver 898 | net.mx17.overridedns/net.mx17.overridedns.NetworkStateReceiver 899 | one.hh.oneclient/com.igexin.sdk.PushService 900 | org.coursera.android/org.coursera.core.legacy.network.CourkitNetworkObservable 901 | org.fdroid.fdroid/org.fdroid.fdroid.receiver.WifiStateChangeReceiver 902 | org.geekbang.geekTime/org.android.agoo.huawei.HuaWeiReceiver 903 | org.geekbang.geekTime/org.android.agoo.xiaomi.MiPushBroadcastReceiver 904 | org.wordpress.android/org.wordpress.android.networking.ConnectionChangeReceiver 905 | tv.danmaku.bili/com.bilibili.lib.push.HuaweiMessageReceiver 906 | tv.danmaku.bili/com.bilibili.lib.push.MiMessageReceiver 907 | tv.danmaku.bili/com.huawei.hms.support.api.push.PushEventReceiver 908 | tv.danmaku.bili/com.xiaomi.push.service.XMPushService 909 | video.vue.android/com.google.android.gms.analytics.AnalyticsService 910 | video.vue.android/com.google.android.gms.analytics.CampaignTrackingService 911 | video.vue.android/com.google.android.gms.measurement.AppMeasurementJobService 912 | video.vue.android/com.google.android.gms.measurement.AppMeasurementService 913 | cmb.pb/com.gieseckedevrient.android.pushclient.HcePushService 914 | cmb.pb/com.huawei.android.pushagent.PushService 915 | cmb.pb/com.xiaomi.mipush.sdk.MessageHandleService 916 | cmb.pb/com.xiaomi.mipush.sdk.PushMessageHandler 917 | cmb.pb/com.xiaomi.push.service.XMPushService 918 | cn.com.cmbc.newmbank/cn.com.cmbc.newmbank.push.CmbcPushService 919 | cn.com.cmbc.newmbank/cn.com.cmbc.newmbank.push.GetuiIntentService 920 | cn.com.cmbc.newmbank/cn.com.cmbc.newmbank.push.GetuiPushService 921 | cn.com.cmbc.newmbank/com.gieseckedevrient.android.pushclient.HcePushService 922 | cn.com.cmbc.newmbank/com.igexin.sdk.PushService 923 | cn.com.langeasy.LangEasyLexis/com.taobao.accs.ChannelService 924 | cn.com.langeasy.LangEasyLexis/com.taobao.accs.ChannelService$KernelService 925 | cn.com.langeasy.LangEasyLexis/com.umeng.message.UmengIntentService 926 | cn.com.langeasy.LangEasyLexis/com.umeng.message.UmengMessageCallbackHandlerService 927 | cn.com.langeasy.LangEasyLexis/com.umeng.message.UmengMessageIntentReceiverService 928 | cn.com.langeasy.LangEasyLexis/org.android.agoo.accs.AgooService 929 | com.Qunar/com.xiaomi.mipush.sdk.MessageHandleService 930 | com.Qunar/com.xiaomi.mipush.sdk.PushMessageHandler 931 | com.Qunar/com.xiaomi.push.service.XMPushService 932 | com.abbyy.mobile.textgrabber.full/com.abbyy.mobile.textgrabber.full.push.TextGrabberPushService 933 | com.abbyy.mobile.textgrabber.full/com.batch.android.BatchPushService 934 | com.achievo.vipshop/com.achievo.vipshop.commons.push.VipsHttpPushService 935 | com.achievo.vipshop/com.achievo.vipshop.weiaixing.daemon.services.DaemonService 936 | com.achievo.vipshop/com.achievo.vipshop.weiaixing.daemon.services.NotificationDaemonService 937 | com.achievo.vipshop/com.huawei.android.pushagent.PushService 938 | com.airbnb.android/cn.jpush.android.service.DaemonService 939 | com.airbnb.android/cn.jpush.android.service.PushService 940 | com.ali.money.shield/anetwork.channel.aidl.NetworkService 941 | com.ali.money.shield/com.ali.money.shield.module.daemon.DaemonService 942 | com.ali.money.shield/com.taobao.accs.ChannelService 943 | com.ali.money.shield/com.xiaomi.mipush.sdk.MessageHandleService 944 | com.ali.money.shield/com.xiaomi.mipush.sdk.PushMessageHandler 945 | com.ali.money.shield/mtopsdk.xstate.XStateService 946 | com.ali.money.shield/org.android.agoo.accs.AgooService 947 | com.alibaba.wireless/anetwork.channel.aidl.NetworkService 948 | com.alibaba.wireless/com.taobao.accs.ChannelService 949 | com.alibaba.wireless/com.taobao.agoo.TaobaoMessageIntentReceiverService 950 | com.alibaba.wireless/com.xiaomi.mipush.sdk.MessageHandleService 951 | com.alibaba.wireless/com.xiaomi.mipush.sdk.PushMessageHandler 952 | com.alibaba.wireless/mtopsdk.xstate.XStateService 953 | com.alibaba.wireless/org.android.agoo.accs.AgooService 954 | com.amazon.kindlefc/com.igexin.sdk.PushService 955 | com.amazon.mShop.android.shopping/com.amazon.alexa.sdk.audio.channel.content.amp.service.AmpService 956 | com.android.chrome/com.google.ipc.invalidation.ticl.android2.channel.AndroidInstanceIDListenerService 957 | com.android.chrome/com.google.ipc.invalidation.ticl.android2.channel.AndroidMessageSenderService 958 | com.android.chrome/com.google.ipc.invalidation.ticl.android2.channel.GcmRegistrationTaskService 959 | com.antzb.androidapp/com.igexin.download.DownloadService 960 | com.antzb.androidapp/com.igexin.getuiext.service.GetuiExtService 961 | com.antzb.androidapp/com.igexin.sdk.PushService 962 | com.antzb.androidapp/com.igexin.sdk.PushServiceUser 963 | com.app.hero.ui/com.baidu.android.pushservice.PushService 964 | com.baidu.BaiduMap/com.baidu.android.pushservice.CommandService 965 | com.baidu.BaiduMap/com.baidu.android.pushservice.PushService 966 | com.baidu.BaiduMap/com.coloros.mcssdk.PushService 967 | com.baidu.BaiduMap/com.xiaomi.mipush.sdk.MessageHandleService 968 | com.baidu.BaiduMap/com.xiaomi.mipush.sdk.PushMessageHandler 969 | com.baidu.input_mi/com.xiaomi.mipush.sdk.MessageHandleService 970 | com.baidu.input_mi/com.xiaomi.mipush.sdk.PushMessageHandler 971 | com.baidu.input_mi/com.xiaomi.push.service.XMPushService 972 | com.baidu.netdisk/com.baidu.android.pushservice.CommandService 973 | com.baidu.netdisk/com.baidu.android.pushservice.PushService 974 | com.baidu.notes/com.baidu.android.pushservice.PushService 975 | com.baojiazhijia.qichebaojia/cn.mucang.android.qichetoutiao.lib.home.NewsPushService 976 | com.baojiazhijia.qichebaojia/com.xiaomi.mipush.sdk.MessageHandleService 977 | com.baojiazhijia.qichebaojia/com.xiaomi.mipush.sdk.PushMessageHandler 978 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.XMJobService 979 | com.baojiazhijia.qichebaojia/com.xiaomi.push.service.XMPushService 980 | com.baojiazhijia.qichebaojia/io.rong.push.PushService 981 | com.baojiazhijia.qichebaojia/io.rong.push.core.MessageHandleService 982 | com.bdatu.ngphone/com.xiaomi.mipush.sdk.MessageHandleService 983 | com.bdatu.ngphone/com.xiaomi.mipush.sdk.PushMessageHandler 984 | com.bdatu.ngphone/com.xiaomi.push.service.XMPushService 985 | com.cainiao.wireless/anetwork.channel.aidl.NetworkService 986 | com.cainiao.wireless/com.alibaba.tcms.service.XPushMessageHandleService 987 | com.cainiao.wireless/com.cainiao.wireless.dorado.module.channel.accs.DoradoAccsService 988 | com.cainiao.wireless/com.taobao.accs.ChannelService 989 | com.cainiao.wireless/com.taobao.accs.ChannelService$KernelService 990 | com.cainiao.wireless/com.xiaomi.mipush.sdk.MessageHandleService 991 | com.cainiao.wireless/com.xiaomi.mipush.sdk.PushMessageHandler 992 | com.cainiao.wireless/mtopsdk.xstate.XStateService 993 | com.cainiao.wireless/org.android.agoo.accs.AgooService 994 | com.calazova.club.guangzhu/cn.jpush.android.service.PushService 995 | com.chinamworld.main/com.ccb.android.yxpush.aidl.YXRemotePushService 996 | com.ciji.jjk/cn.jpush.android.service.DaemonService 997 | com.ciji.jjk/cn.jpush.android.service.PushService 998 | com.ciji.jjk/com.xiaomi.mipush.sdk.MessageHandleService 999 | com.ciji.jjk/com.xiaomi.mipush.sdk.PushMessageHandler 1000 | com.ciji.jjk/com.xiaomi.push.service.XMJobService 1001 | com.ciji.jjk/com.xiaomi.push.service.XMPushService 1002 | com.ciji.jjk/io.rong.push.PushService 1003 | com.ciji.jjk/io.rong.push.core.MessageHandleService 1004 | com.citiccard.mobilebank/cn.jpush.android.service.DaemonService 1005 | com.citiccard.mobilebank/cn.jpush.android.service.PushService 1006 | com.citiccard.mobilebank/com.dkkj.Controller.server.PushService 1007 | com.citiccard.mobilebank/com.gieseckedevrient.android.pushclient.HcePushService 1008 | com.cmbchina.ccd.pluto.cmbActivity/com.gieseckedevrient.android.pushclient.HcePushService 1009 | com.cmbchina.ccd.pluto.cmbActivity/com.igexin.sdk.PushService 1010 | com.cmbchina.ccd.pluto.cmbActivity/com.tencent.intervideo.nowproxy.proxyinner.channel.ChannelService 1011 | com.concur.breeze/com.baidu.android.pushservice.CommandService 1012 | com.concur.breeze/com.baidu.android.pushservice.PushService 1013 | com.coolapk.market/com.xiaomi.mipush.sdk.MessageHandleService 1014 | com.coolapk.market/com.xiaomi.mipush.sdk.PushMessageHandler 1015 | com.coolapk.market/com.xiaomi.push.service.XMPushService 1016 | com.daimajia.gold/com.avos.avoscloud.PushService 1017 | com.diandian.android.easylife/com.igexin.download.DownloadService 1018 | com.diandian.android.easylife/com.igexin.getuiext.service.GetuiExtService 1019 | com.diandian.android.easylife/com.igexin.sdk.PushService 1020 | com.dianping.v1/com.dianping.base.push.pushservice.MZPushService 1021 | com.dianping.v1/com.dianping.base.push.pushservice.PushWakeUpJob 1022 | com.dianping.v1/com.dianping.base.push.pushservice.dp.DPPushService 1023 | com.dianping.v1/com.dianping.base.push.pushservice.dp.FakeService 1024 | com.dianping.v1/com.huawei.android.pushagent.PushService 1025 | com.dianping.v1/com.xiaomi.mipush.sdk.MessageHandleService 1026 | com.dianping.v1/com.xiaomi.mipush.sdk.PushMessageHandler 1027 | com.dianping.v1/com.xiaomi.push.service.XMPushService 1028 | com.douban.book.reader/com.igexin.sdk.PushService 1029 | com.douban.book.reader/com.igexin.sdk.PushServiceUser 1030 | com.douban.frodo/com.douban.frodo.fangorns.audio.AudioPlayerDaemonService 1031 | com.douban.frodo/com.douban.frodo.fangorns.audio.DaemonService 1032 | com.douban.frodo/com.douban.push.service.PushService 1033 | com.douban.frodo/com.xiaomi.mipush.sdk.MessageHandleService 1034 | com.douban.frodo/com.xiaomi.mipush.sdk.PushMessageHandler 1035 | com.douban.frodo/com.xiaomi.push.service.XMPushService 1036 | com.drwine.android/com.umeng.message.UmengIntentService 1037 | com.drwine.android/com.umeng.message.UmengMessageCallbackHandlerService 1038 | com.drwine.android/com.umeng.message.UmengMessageIntentReceiverService 1039 | com.drwine.android/com.umeng.message.UmengService 1040 | com.drwine.android/com.umeng.message.local.UmengLocalNotificationService 1041 | com.duokan.phone.remotecontroller/com.xiaomi.mipush.sdk.MessageHandleService 1042 | com.duokan.phone.remotecontroller/com.xiaomi.mipush.sdk.PushMessageHandler 1043 | com.duokan.phone.remotecontroller/com.xiaomi.push.service.XMJobService 1044 | com.duokan.phone.remotecontroller/com.xiaomi.push.service.XMPushService 1045 | com.duokan.reader/com.duokan.reader.domain.cloud.push.DkPushService 1046 | com.duokan.reader/com.unicom.channel.paysecurity.TouchPayService 1047 | com.duokan.reader/com.xiaomi.mipush.sdk.MessageHandleService 1048 | com.duokan.reader/com.xiaomi.mipush.sdk.PushMessageHandler 1049 | com.duokan.reader/com.xiaomi.push.service.XMJobService 1050 | com.duokan.reader/com.xiaomi.push.service.XMPushService 1051 | com.ecitic.bank.mobile/com.igexin.download.DownloadService 1052 | com.ecitic.bank.mobile/com.igexin.getuiext.service.GetuiExtService 1053 | com.ecitic.bank.mobile/com.igexin.sdk.PushService 1054 | com.eg.android.AlipayGphone/anetwork.channel.aidl.NetworkService 1055 | com.eg.android.AlipayGphone/com.alipay.mobile.rome.pushservice.integration.PushDistributerService 1056 | com.eg.android.AlipayGphone/com.alipay.mobile.rome.pushservice.integration.RecvMsgIntentService 1057 | com.eg.android.AlipayGphone/com.xiaomi.mipush.sdk.MessageHandleService 1058 | com.eg.android.AlipayGphone/com.xiaomi.mipush.sdk.PushMessageHandler 1059 | com.eg.android.AlipayGphone/com.xiaomi.push.service.XMPushService 1060 | com.eg.android.AlipayGphone/mtopsdk.xstate.XStateService 1061 | com.facebook.katana/com.facebook.bugreporter.scheduler.GCMBugReportService 1062 | com.facebook.katana/com.facebook.bugreporter.scheduler.LollipopBugReportService 1063 | com.facebook.orca/com.facebook.bugreporter.scheduler.GCMBugReportService 1064 | com.facebook.orca/com.facebook.bugreporter.scheduler.LollipopBugReportService 1065 | com.fuiou.mgr/com.baidu.android.pushservice.CommandService 1066 | com.fuiou.mgr/com.baidu.android.pushservice.PushService 1067 | com.futurefleet.pandabus.ui.dalian/cn.jpush.android.service.PushService 1068 | com.google.android.apps.ads.publisher/com.google.android.apps.ads.publisher.widget.OrientationChangeTrackingService 1069 | com.google.android.apps.ads.publisher/com.google.android.apps.ads.publisher.widget.UpdateWidgetService 1070 | com.google.android.instantapps.supervisor/com.google.android.instantapps.supervisor.DebugService 1071 | com.google.android.youtube/com.google.android.apps.youtube.app.common.ads.AdIdListenerService 1072 | com.gotokeep.keep/com.gotokeep.keep.service.outdoor.daemon.DaemonService 1073 | com.gotokeep.keep/com.tencent.android.tpush.rpc.XGRemoteService 1074 | com.gotokeep.keep/com.tencent.android.tpush.service.XGPushService 1075 | com.gotokeep.keep/com.xiaomi.mipush.sdk.MessageHandleService 1076 | com.gotokeep.keep/com.xiaomi.mipush.sdk.PushMessageHandler 1077 | com.gotokeep.keep/com.xiaomi.push.service.XMJobService 1078 | com.gotokeep.keep/com.xiaomi.push.service.XMPushService 1079 | com.greenpoint.android.mc10086.activity/com.huawei.android.pushagent.PushService 1080 | com.greenpoint.android.mc10086.activity/com.leadeon.cmcc.cservice.PushService 1081 | com.greenpoint.android.mc10086.activity/com.xiaomi.mipush.sdk.MessageHandleService 1082 | com.greenpoint.android.mc10086.activity/com.xiaomi.mipush.sdk.PushMessageHandler 1083 | com.greenpoint.android.mc10086.activity/com.xiaomi.push.service.XMJobService 1084 | com.greenpoint.android.mc10086.activity/com.xiaomi.push.service.XMPushService 1085 | com.handsgo.jiakao.android/com.alibaba.sdk.android.push.ChannelService 1086 | com.handsgo.jiakao.android/com.alibaba.sdk.android.push.channel.TaobaoRecvService 1087 | com.handsgo.jiakao.android/com.xiaomi.mipush.sdk.MessageHandleService 1088 | com.handsgo.jiakao.android/com.xiaomi.mipush.sdk.PushMessageHandler 1089 | com.handsgo.jiakao.android/com.xiaomi.push.service.XMPushService 1090 | com.handsgo.jiakao.android/io.rong.push.PushService 1091 | com.heartide.xinchao.stressandroid/com.xiaomi.mipush.sdk.MessageHandleService 1092 | com.heartide.xinchao.stressandroid/com.xiaomi.mipush.sdk.PushMessageHandler 1093 | com.heartide.xinchao.stressandroid/com.xiaomi.push.service.XMJobService 1094 | com.heartide.xinchao.stressandroid/com.xiaomi.push.service.XMPushService 1095 | com.hebao.app/com.xiaomi.mipush.sdk.MessageHandleService 1096 | com.hebao.app/com.xiaomi.mipush.sdk.PushMessageHandler 1097 | com.hebao.app/com.xiaomi.push.service.XMJobService 1098 | com.hebao.app/com.xiaomi.push.service.XMPushService 1099 | com.hellotalk/com.tencent.android.tpush.rpc.XGRemoteService 1100 | com.hellotalk/com.tencent.android.tpush.service.XGPushService 1101 | com.hustzp.com.xichuangzhu/com.avos.avoscloud.PushService 1102 | com.hustzp.com.xichuangzhu/io.rong.push.PushService 1103 | com.hustzp.com.xichuangzhu/io.rong.push.core.MessageHandleService 1104 | com.hyww.wisdomtree/cn.jpush.android.service.DaemonService 1105 | com.hyww.wisdomtree/cn.jpush.android.service.PushService 1106 | com.hyww.wisdomtree/org.openudid.OpenUDID_service 1107 | com.ichano.athome.camera/com.igexin.download.DownloadService 1108 | com.ichano.athome.camera/com.igexin.sdk.PushService 1109 | com.ichano.athome.camera/com.igexin.sdk.PushServiceUser 1110 | com.ichano.athome.camera/com.umeng.message.UmengIntentService 1111 | com.ichano.athome.camera/com.umeng.message.UmengMessageCallbackHandlerService 1112 | com.ichano.athome.camera/com.umeng.message.UmengMessageIntentReceiverService 1113 | com.ichano.athome.camera/com.umeng.message.UmengService 1114 | com.ichano.athome.camera/com.umeng.message.local.UmengLocalNotificationService 1115 | com.instagram.android/com.instagram.notifications.push.ADMMessageHandler 1116 | com.ishowedu.peiyin/cn.jpush.android.service.DaemonService 1117 | com.ishowedu.peiyin/cn.jpush.android.service.PushService 1118 | com.ishowedu.peiyin/com.umeng.message.UmengIntentService 1119 | com.ishowedu.peiyin/com.umeng.message.UmengMessageCallbackHandlerService 1120 | com.ishowedu.peiyin/com.umeng.message.UmengMessageIntentReceiverService 1121 | com.ishowedu.peiyin/com.umeng.message.UmengService 1122 | com.ishowedu.peiyin/com.xiaomi.mipush.sdk.MessageHandleService 1123 | com.ishowedu.peiyin/com.xiaomi.mipush.sdk.PushMessageHandler 1124 | com.ishowedu.peiyin/com.xiaomi.push.service.XMPushService 1125 | com.ishowedu.peiyin/io.rong.push.PushService 1126 | com.jd.jrapp/com.tencent.android.tpush.rpc.XGRemoteService 1127 | com.jd.jrapp/com.tencent.android.tpush.service.XGPushService 1128 | com.jesson.meishi/com.umeng.message.UmengIntentService 1129 | com.jesson.meishi/com.umeng.message.UmengMessageCallbackHandlerService 1130 | com.jesson.meishi/com.umeng.message.UmengMessageIntentReceiverService 1131 | com.jesson.meishi/com.umeng.message.UmengService 1132 | com.jianshu.haruki/com.igexin.download.DownloadService 1133 | com.jianshu.haruki/com.igexin.getuiext.service.GetuiExtService 1134 | com.jianshu.haruki/com.igexin.sdk.PushService 1135 | com.jianshu.haruki/com.igexin.sdk.PushServiceUser 1136 | com.jianshu.haruki/com.xiaomi.mipush.sdk.MessageHandleService 1137 | com.jianshu.haruki/com.xiaomi.mipush.sdk.PushMessageHandler 1138 | com.jianshu.haruki/com.xiaomi.push.service.XMPushService 1139 | com.jiuxianapk.ui/com.igexin.download.DownloadService 1140 | com.jiuxianapk.ui/com.igexin.getuiext.service.GetuiExtService 1141 | com.jiuxianapk.ui/com.igexin.sdk.PushService 1142 | com.jiuxianapk.ui/com.igexin.sdk.PushServiceUser 1143 | com.jiuxianapk.ui/com.umeng.message.UmengIntentService 1144 | com.jiuxianapk.ui/com.umeng.message.UmengMessageCallbackHandlerService 1145 | com.jiuxianapk.ui/com.umeng.message.UmengMessageIntentReceiverService 1146 | com.jiuxianapk.ui/com.umeng.message.UmengService 1147 | com.jiuxianapk.ui/com.umeng.message.local.UmengLocalNotificationService 1148 | com.job.android/com.xiaomi.mipush.sdk.MessageHandleService 1149 | com.job.android/com.xiaomi.mipush.sdk.PushMessageHandler 1150 | com.job.android/com.xiaomi.push.service.XMPushService 1151 | com.kaistart.android/com.igexin.download.DownloadService 1152 | com.kaistart.android/com.igexin.getuiext.service.GetuiExtService 1153 | com.kaistart.android/com.igexin.sdk.PushService 1154 | com.kaistart.android/com.igexin.sdk.PushServiceUser 1155 | com.kingsoft/com.igexin.download.DownloadService 1156 | com.kingsoft/com.kingsoft.service.GeTuiIntentService 1157 | com.kingsoft/com.kingsoft.service.GeTuiPushService 1158 | com.kingsoft/com.xiaomi.mipush.sdk.MessageHandleService 1159 | com.kingsoft/com.xiaomi.mipush.sdk.PushMessageHandler 1160 | com.kingsoft/com.xiaomi.push.service.XMJobService 1161 | com.kingsoft/com.xiaomi.push.service.XMPushService 1162 | com.kiwi.android.whiteandroid/com.avos.avoscloud.PushService 1163 | com.koudai.weidian.buyer/com.igexin.download.DownloadService 1164 | com.koudai.weidian.buyer/com.igexin.sdk.PushService 1165 | com.koudai.weidian.buyer/com.tencent.android.tpush.rpc.XGRemoteService 1166 | com.koudai.weidian.buyer/com.tencent.android.tpush.service.XGPushService 1167 | com.koudai.weidian.buyer/com.xiaomi.mipush.sdk.MessageHandleService 1168 | com.koudai.weidian.buyer/com.xiaomi.mipush.sdk.PushMessageHandler 1169 | com.koudai.weidian.buyer/com.xiaomi.push.service.XMPushService 1170 | com.ktls.fileinfo/com.umeng.message.UmengIntentService 1171 | com.ktls.fileinfo/com.umeng.message.UmengMessageCallbackHandlerService 1172 | com.ktls.fileinfo/com.umeng.message.UmengMessageIntentReceiverService 1173 | com.ktls.fileinfo/com.umeng.message.UmengService 1174 | com.liangcang/cn.jpush.android.service.DaemonService 1175 | com.liangcang/cn.jpush.android.service.PushService 1176 | com.luojilab.player/com.xiaomi.mipush.sdk.MessageHandleService 1177 | com.luojilab.player/com.xiaomi.mipush.sdk.PushMessageHandler 1178 | com.luojilab.player/com.xiaomi.push.service.XMJobService 1179 | com.luojilab.player/com.xiaomi.push.service.XMPushService 1180 | com.luojilab.player/io.rong.push.PushService 1181 | com.madv360.madv/cn.jpush.android.service.DaemonService 1182 | com.madv360.madv/cn.jpush.android.service.PushService 1183 | com.mbalib.android.wiki/com.umeng.message.UmengIntentService 1184 | com.mbalib.android.wiki/com.umeng.message.UmengService 1185 | com.mfashiongallery.emag/com.xiaomi.mipush.sdk.MessageHandleService 1186 | com.mfashiongallery.emag/com.xiaomi.mipush.sdk.PushMessageHandler 1187 | com.mfashiongallery.emag/com.xiaomi.push.service.XMPushService 1188 | com.mfw.roadbook/anetwork.channel.aidl.NetworkService 1189 | com.mfw.roadbook/com.igexin.download.DownloadService 1190 | com.mfw.roadbook/com.igexin.sdk.PushService 1191 | com.mfw.roadbook/com.mfw.roadbook.push.getuipush.GetuiPushService 1192 | com.mfw.roadbook/com.mfw.roadbook.push.getuipush.OperateIntentService 1193 | com.mfw.roadbook/com.xiaomi.mipush.sdk.MessageHandleService 1194 | com.mfw.roadbook/com.xiaomi.mipush.sdk.PushMessageHandler 1195 | com.mfw.roadbook/com.xiaomi.push.service.XMJobService 1196 | com.mfw.roadbook/com.xiaomi.push.service.XMPushService 1197 | com.mfw.roadbook/mtopsdk.xstate.XStateService 1198 | com.miui.miuibbs/com.xiaomi.mipush.sdk.MessageHandleService 1199 | com.miui.miuibbs/com.xiaomi.mipush.sdk.PushMessageHandler 1200 | com.miui.miuibbs/com.xiaomi.push.service.XMJobService 1201 | com.miui.miuibbs/com.xiaomi.push.service.XMPushService 1202 | com.miui.video.plugin/com.miui.video.plugin.push.PushService 1203 | com.miui.video.plugin/com.xiaomi.mipush.sdk.MessageHandleService 1204 | com.miui.video.plugin/com.xiaomi.mipush.sdk.PushMessageHandler 1205 | com.miui.video.plugin/com.xiaomi.push.service.XMPushService 1206 | com.musixmatch.android.lyrify/com.musixmatch.android.core.utils.openuid.OpenUDID_service 1207 | com.netease.cloudmusic/com.huawei.android.pushagent.PushService 1208 | com.netease.cloudmusic/com.netease.cloudmusic.service.PushService 1209 | com.netease.cloudmusic/com.xiaomi.mipush.sdk.MessageHandleService 1210 | com.netease.cloudmusic/com.xiaomi.mipush.sdk.PushMessageHandler 1211 | com.netease.cloudmusic/com.xiaomi.push.service.XMJobService 1212 | com.netease.cloudmusic/com.xiaomi.push.service.XMPushService 1213 | com.netease.edu.ucmooc/com.netease.pushservice.core.NetEasePushMessageService_V1 1214 | com.netease.snailread/com.netease.pushservice.core.NetEasePushMessageService_V1 1215 | com.qianyan.eudic/io.rong.push.PushService 1216 | com.qianyan.eudic/io.rong.push.core.MessageHandleService 1217 | com.qingsongchou.social/cn.jpush.android.service.DaemonService 1218 | com.qingsongchou.social/cn.jpush.android.service.PushService 1219 | com.qingsongchou.social/io.rong.push.PushService 1220 | com.qingsongchou.social/io.rong.push.core.MessageHandleService 1221 | com.qiyi.video/com.huawei.android.pushagent.PushService 1222 | com.qiyi.video/com.iqiyi.daemonservice.DaemonService 1223 | com.qiyi.video/com.iqiyi.pushservice.PushService 1224 | com.qiyi.video/com.xiaomi.mipush.sdk.MessageHandleService 1225 | com.qiyi.video/com.xiaomi.mipush.sdk.PushMessageHandler 1226 | com.qiyi.video/com.xiaomi.push.service.XMJobService 1227 | com.qiyi.video/com.xiaomi.push.service.XMPushService 1228 | com.quvideo.xiaoying/cn.jpush.android.service.PushService 1229 | com.quvideo.xiaoying/com.cloudtech.ads.core.AdGuardService 1230 | com.quvideo.xiaoying/com.xiaomi.mipush.sdk.MessageHandleService 1231 | com.quvideo.xiaoying/com.xiaomi.mipush.sdk.PushMessageHandler 1232 | com.quvideo.xiaoying/com.xiaomi.push.service.XMJobService 1233 | com.quvideo.xiaoying/com.xiaomi.push.service.XMPushService 1234 | com.quvideo.xiaoying/io.rong.push.PushService 1235 | com.quvideo.xiaoying/io.rong.push.core.MessageHandleService 1236 | com.rcplatform.nocrop/com.google.android.gcm.RCPushService 1237 | com.rjfittime.app/com.igexin.download.DownloadService 1238 | com.rjfittime.app/com.igexin.sdk.PushService 1239 | com.rjfittime.app/com.igexin.sdk.PushServiceUser 1240 | com.ruguoapp.jike/com.igexin.download.DownloadService 1241 | com.ruguoapp.jike/com.igexin.sdk.PushService 1242 | com.ruguoapp.jike/com.ruguoapp.jike.push.gt.GTPushService 1243 | com.ruguoapp.jike/com.xiaomi.mipush.sdk.MessageHandleService 1244 | com.ruguoapp.jike/com.xiaomi.mipush.sdk.PushMessageHandler 1245 | com.ruguoapp.jike/com.xiaomi.push.service.XMJobService 1246 | com.ruguoapp.jike/com.xiaomi.push.service.XMPushService 1247 | com.sand.airdroid/com.sand.airdroid.servers.push.PushService 1248 | com.sand.airdroid/com.sand.airdroid.services.PushMessageHandleService 1249 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.MZPushService 1250 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.NotificationClickReceiver 1251 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.PushWakeUpJob 1252 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.dp.DPPushService 1253 | com.sankuai.meituan.takeoutnew/com.dianping.base.push.pushservice.dp.FakeService 1254 | com.sankuai.meituan.takeoutnew/com.huawei.android.pushagent.PushService 1255 | com.sankuai.meituan.takeoutnew/com.meituan.android.common.horn.HornPushService 1256 | com.sankuai.meituan.takeoutnew/com.xiaomi.mipush.sdk.MessageHandleService 1257 | com.sankuai.meituan.takeoutnew/com.xiaomi.mipush.sdk.PushMessageHandler 1258 | com.sankuai.meituan.takeoutnew/com.xiaomi.push.service.XMPushService 1259 | com.sdu.didi.psnger/com.igexin.download.DownloadService 1260 | com.sdu.didi.psnger/com.igexin.getuiext.service.GetuiExtService 1261 | com.sdu.didi.psnger/com.igexin.sdk.PushServiceUser 1262 | com.sdu.didi.psnger/com.xiaomi.mipush.sdk.MessageHandleService 1263 | com.sdu.didi.psnger/com.xiaomi.mipush.sdk.PushMessageHandler 1264 | com.sdu.didi.psnger/com.xiaomi.push.service.XMJobService 1265 | com.sdu.didi.psnger/com.xiaomi.push.service.XMPushService 1266 | com.shanbay.words/com.xiaomi.mipush.sdk.MessageHandleService 1267 | com.shanbay.words/com.xiaomi.mipush.sdk.PushMessageHandler 1268 | com.shanbay.words/com.xiaomi.push.service.XMJobService 1269 | com.shanbay.words/com.xiaomi.push.service.XMPushService 1270 | com.shouzhang.com/com.taobao.accs.ChannelService 1271 | com.shouzhang.com/com.taobao.accs.ChannelService$KernelService 1272 | com.shouzhang.com/com.umeng.message.UmengIntentService 1273 | com.shouzhang.com/com.umeng.message.UmengMessageCallbackHandlerService 1274 | com.shouzhang.com/com.umeng.message.UmengMessageIntentReceiverService 1275 | com.shouzhang.com/org.android.agoo.accs.AgooService 1276 | com.sina.weibo/anetwork.channel.aidl.NetworkService 1277 | com.sina.weibo/com.huawei.android.pushagent.PushService 1278 | com.sina.weibo/com.sina.push.service.SinaPushService 1279 | com.sina.weibo/com.sina.weibo.push.PushServiceProxy 1280 | com.sina.weibo/com.sina.weibo.push.syschannel.letv.LETVPushIntentService 1281 | com.sina.weibo/com.xiaomi.mipush.sdk.MessageHandleService 1282 | com.sina.weibo/com.xiaomi.mipush.sdk.PushMessageHandler 1283 | com.sina.weibo/com.xiaomi.push.service.XMJobService 1284 | com.sina.weibo/com.xiaomi.push.service.XMPushService 1285 | com.sina.weibo/mtopsdk.xstate.XStateService 1286 | com.sirma.mobile.bible.android/com.youversion.push.adm.YvAdmMessageHandler 1287 | com.smzdm.client.android/anetwork.channel.aidl.NetworkService 1288 | com.smzdm.client.android/com.xiaomi.mipush.sdk.MessageHandleService 1289 | com.smzdm.client.android/com.xiaomi.mipush.sdk.PushMessageHandler 1290 | com.smzdm.client.android/com.xiaomi.push.service.XMPushService 1291 | com.smzdm.client.android/mtopsdk.xstate.XStateService 1292 | com.spdbccc.app/cn.jpush.android.service.DaemonService 1293 | com.spdbccc.app/cn.jpush.android.service.PushService 1294 | com.spdbccc.app/com.gieseckedevrient.android.pushclient.HcePushService 1295 | com.sspai.client/com.umeng.message.UmengIntentService 1296 | com.sspai.client/com.umeng.message.UmengService 1297 | com.sspai.client/org.android.agoo.service.ElectionService 1298 | com.starbucks.cn/cn.jpush.android.service.DaemonService 1299 | com.starbucks.cn/cn.jpush.android.service.PushService 1300 | com.taobao.idlefish/anetwork.channel.aidl.NetworkService 1301 | com.taobao.idlefish/com.taobao.accs.ChannelService 1302 | com.taobao.idlefish/com.taobao.accs.ChannelService$KernelService 1303 | com.taobao.idlefish/com.taobao.agoo.TaobaoMessageIntentReceiverService 1304 | com.taobao.idlefish/com.taobao.fleamarket.push.XPushService 1305 | com.taobao.idlefish/com.xiaomi.mipush.sdk.MessageHandleService 1306 | com.taobao.idlefish/com.xiaomi.mipush.sdk.PushMessageHandler 1307 | com.taobao.idlefish/mtopsdk.xstate.XStateService 1308 | com.taobao.idlefish/org.android.agoo.accs.AgooService 1309 | com.taobao.movie.android/anetwork.channel.aidl.NetworkService 1310 | com.taobao.movie.android/com.taobao.accs.ChannelService 1311 | com.taobao.movie.android/com.taobao.agoo.TaobaoMessageIntentReceiverService 1312 | com.taobao.movie.android/com.xiaomi.mipush.sdk.MessageHandleService 1313 | com.taobao.movie.android/mtopsdk.xstate.XStateService 1314 | com.taobao.movie.android/org.android.agoo.accs.AgooService 1315 | com.taobao.newjob/anetwork.channel.aidl.NetworkService 1316 | com.taobao.newjob/com.taobao.agoo.PushService 1317 | com.taobao.newjob/com.taobao.agoo.TaobaoMessageIntentReceiverService 1318 | com.taobao.newjob/com.taobao.nbcache.service.NBCacheService 1319 | com.taobao.newjob/mtopsdk.xstate.XStateService 1320 | com.taobao.qianniu/anetwork.channel.aidl.NetworkService 1321 | com.taobao.qianniu/com.alibaba.tcms.service.XPushMessageHandleService 1322 | com.taobao.qianniu/com.huawei.android.pushagent.PushService 1323 | com.taobao.qianniu/com.xiaomi.mipush.sdk.MessageHandleService 1324 | com.taobao.qianniu/com.xiaomi.mipush.sdk.PushMessageHandler 1325 | com.taobao.qianniu/com.xiaomi.push.service.XMJobService 1326 | com.taobao.qianniu/com.xiaomi.push.service.XMPushService 1327 | com.taobao.qianniu/mtopsdk.xstate.XStateService 1328 | com.taobao.taobao/android.taobao.atlas.runtime.newcomponent.ATLASPROXY_com_taobao_taobao_channel_Service 1329 | com.taobao.taobao/anetwork.channel.aidl.NetworkService 1330 | com.taobao.taobao/com.alibaba.mobileim.channel.service.InetIOService 1331 | com.taobao.taobao/com.android.agoo.MsgService 1332 | com.taobao.taobao/com.taobao.accs.ChannelService 1333 | com.taobao.taobao/com.taobao.accs.ChannelService$KernelService 1334 | com.taobao.taobao/com.taobao.agoo.TaobaoMessageIntentReceiverService 1335 | com.taobao.taobao/com.taobao.nbcache.service.NBCacheService 1336 | com.taobao.taobao/com.taobao.tao.msgcenter.custom.ChatDefaultService 1337 | com.taobao.taobao/com.xiaomi.mipush.sdk.MessageHandleService 1338 | com.taobao.taobao/com.xiaomi.mipush.sdk.PushMessageHandler 1339 | com.taobao.taobao/mtopsdk.xstate.XStateService 1340 | com.taobao.taobao/org.android.agoo.accs.AgooService 1341 | com.taobao.taobao/org.android.agoo.gcm.AgooFirebaseInstanceIDService 1342 | com.taobao.taobao/org.android.agoo.gcm.AgooFirebaseMessagingService 1343 | com.tencent.karaoke/com.huawei.android.pushagent.PushService 1344 | com.tencent.karaoke/com.tencent.karaoke.module.message.business.HandlePushService 1345 | com.tencent.karaoke/com.xiaomi.mipush.sdk.MessageHandleService 1346 | com.tencent.karaoke/com.xiaomi.mipush.sdk.PushMessageHandler 1347 | com.tencent.karaoke/com.xiaomi.push.service.XMPushService 1348 | com.tencent.tmgp.lordofdark/com.tencent.android.tpush.rpc.XGRemoteService 1349 | com.tencent.tmgp.lordofdark/com.tencent.android.tpush.service.XGDaemonService 1350 | com.tencent.tmgp.lordofdark/com.tencent.android.tpush.service.XGPushService 1351 | com.tencent.token/com.tencent.token.core.push.PushService 1352 | com.tencent.weread/com.tencent.weread.push.PushService 1353 | com.tencent.weread/com.xiaomi.mipush.sdk.MessageHandleService 1354 | com.tencent.weread/com.xiaomi.mipush.sdk.PushMessageHandler 1355 | com.tencent.weread/com.xiaomi.push.service.XMJobService 1356 | com.tencent.weread/com.xiaomi.push.service.XMPushService 1357 | com.tplink.cloudrouter/com.tplink.cloudrouter.service.CloudMsgPushService 1358 | com.twitter.android/com.twitter.notification.service.PushService 1359 | com.umetrip.android.msky.app/com.huawei.android.pushagent.PushService 1360 | com.umetrip.android.msky.app/com.xiaomi.mipush.sdk.MessageHandleService 1361 | com.umetrip.android.msky.app/com.xiaomi.mipush.sdk.PushMessageHandler 1362 | com.umetrip.android.msky.app/com.xiaomi.push.service.XMPushService 1363 | com.unionpay/com.huawei.android.pushagent.PushService 1364 | com.unionpay/com.igexin.download.DownloadService 1365 | com.unionpay/com.igexin.getuiext.service.GetuiExtService 1366 | com.unionpay/com.igexin.sdk.PushService 1367 | com.unionpay/com.igexin.sdk.PushServiceUser 1368 | com.unionpay/com.unionpay.push.UPPushService 1369 | com.unionpay/com.xiaomi.mipush.sdk.MessageHandleService 1370 | com.unionpay/com.xiaomi.mipush.sdk.PushMessageHandler 1371 | com.unionpay/com.xiaomi.push.service.XMPushService 1372 | com.unnoo.quan/com.xiaomi.mipush.sdk.MessageHandleService 1373 | com.unnoo.quan/com.xiaomi.mipush.sdk.PushMessageHandler 1374 | com.unnoo.quan/com.xiaomi.push.service.XMJobService 1375 | com.unnoo.quan/com.xiaomi.push.service.XMPushService 1376 | com.vsco.cam/com.vsco.cam.puns.PushService 1377 | com.wali.live/com.hpplay.happyplay.daemonService 1378 | com.wali.live/com.xiaomi.mipush.sdk.MessageHandleService 1379 | com.wali.live/com.xiaomi.mipush.sdk.PushMessageHandler 1380 | com.wali.live/com.xiaomi.push.service.XMJobService 1381 | com.wali.live/com.xiaomi.push.service.XMPushService 1382 | com.wandoujia.phoenix2/com.taobao.accs.ChannelService 1383 | com.wandoujia.phoenix2/com.taobao.agoo.TaobaoMessageIntentReceiverService 1384 | com.wandoujia.phoenix2/com.wandoujia.agoo.PushDeleteService 1385 | com.wandoujia.phoenix2/com.wandoujia.agoo.PushRestoreAlarmService 1386 | com.wandoujia.phoenix2/com.wandoujia.agoo.RedirectService 1387 | com.wandoujia.phoenix2/com.wandoujia.floatwindow.FloatWindowDaemonService 1388 | com.wandoujia.phoenix2/com.wandoujia.jupiter.oomadj.ForegroundAssistServiceForAgooThread 1389 | com.wandoujia.phoenix2/com.wandoujia.jupiter.oomadj.OOMADJNotificationServiceForAgooThread 1390 | com.wandoujia.phoenix2/org.android.agoo.accs.AgooService 1391 | com.wuba/com.wuba.im.service.ChannelService 1392 | com.wuba/com.wuba.push.MiPushRegisterService 1393 | com.wuba/com.wuba.push.PushService 1394 | com.wuba/com.xiaomi.mipush.sdk.MessageHandleService 1395 | com.wuba/com.xiaomi.mipush.sdk.PushMessageHandler 1396 | com.wuba/com.xiaomi.push.service.XMJobService 1397 | com.wuba/com.xiaomi.push.service.XMPushService 1398 | com.xda.labs/com.xda.labs.services.PushService 1399 | com.xiangkan.android/com.xiaomi.mipush.sdk.MessageHandleService 1400 | com.xiangkan.android/com.xiaomi.mipush.sdk.PushMessageHandler 1401 | com.xiangkan.android/com.xiaomi.push.service.XMJobService 1402 | com.xiangkan.android/com.xiaomi.push.service.XMPushService 1403 | com.xiaomi.channel/com.xiaomi.channel.chat.resend.ResendMessageService 1404 | com.xiaomi.channel/com.xiaomi.channel.gameService.GameService 1405 | com.xiaomi.channel/com.xiaomi.channel.mucinfo.service.ExportChatRecordService 1406 | com.xiaomi.channel/com.xiaomi.channel.service.NetworkTestService 1407 | com.xiaomi.channel/com.xiaomi.channel.service.PacketProcessService 1408 | com.xiaomi.jr/com.xiaomi.mipush.sdk.MessageHandleService 1409 | com.xiaomi.jr/com.xiaomi.mipush.sdk.PushMessageHandler 1410 | com.xiaomi.jr/com.xiaomi.push.service.XMJobService 1411 | com.xiaomi.jr/com.xiaomi.push.service.XMPushService 1412 | com.xiaomi.mimobile/com.xiaomi.mipush.sdk.MessageHandleService 1413 | com.xiaomi.mimobile/com.xiaomi.mipush.sdk.PushMessageHandler 1414 | com.xiaomi.mimobile/com.xiaomi.push.service.XMPushService 1415 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.mipush.sdk.MessageHandleService 1416 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.mipush.sdk.PushMessageHandler 1417 | com.xiaomi.mitv.phone.tvassistant/com.xiaomi.push.service.XMPushService 1418 | com.xiaomi.o2o/anetwork.channel.aidl.NetworkService 1419 | com.xiaomi.o2o/com.xiaomi.mipush.sdk.MessageHandleService 1420 | com.xiaomi.o2o/com.xiaomi.mipush.sdk.PushMessageHandler 1421 | com.xiaomi.o2o/com.xiaomi.o2o.push.MIPushMessageService 1422 | com.xiaomi.o2o/com.xiaomi.push.service.XMJobService 1423 | com.xiaomi.o2o/com.xiaomi.push.service.XMPushService 1424 | com.xiaomi.o2o/mtopsdk.xstate.XStateService 1425 | com.xiaomi.oga/com.xiaomi.mipush.sdk.MessageHandleService 1426 | com.xiaomi.oga/com.xiaomi.mipush.sdk.PushMessageHandler 1427 | com.xiaomi.oga/com.xiaomi.push.service.XMJobService 1428 | com.xiaomi.oga/com.xiaomi.push.service.XMPushService 1429 | com.xiaomi.shop/com.xiaomi.mipush.sdk.MessageHandleService 1430 | com.xiaomi.shop/com.xiaomi.mipush.sdk.PushMessageHandler 1431 | com.xiaomi.shop/com.xiaomi.mishop.push.PushService 1432 | com.xiaomi.shop/com.xiaomi.push.service.XMPushService 1433 | com.xiaomi.smarthome/com.xiaomi.mipush.sdk.MessageHandleService 1434 | com.xiaomi.smarthome/com.xiaomi.mipush.sdk.PushMessageHandler 1435 | com.xiaomi.smarthome/com.xiaomi.push.service.XMJobService 1436 | com.xiaomi.smarthome/com.xiaomi.push.service.XMPushService 1437 | com.ximalaya.ting.android/com.igexin.download.DownloadService 1438 | com.ximalaya.ting.android/com.igexin.getuiext.service.GetuiExtService 1439 | com.ximalaya.ting.android/com.igexin.sdk.PushService 1440 | com.ximalaya.ting.android/com.igexin.sdk.PushServiceUser 1441 | com.ximalaya.ting.android/com.xiaomi.mipush.sdk.MessageHandleService 1442 | com.ximalaya.ting.android/com.xiaomi.mipush.sdk.PushMessageHandler 1443 | com.ximalaya.ting.android/com.xiaomi.push.service.XMPushService 1444 | com.xingin.xhs/com.taobao.accs.ChannelService 1445 | com.xingin.xhs/com.taobao.accs.ChannelService$KernelService 1446 | com.xingin.xhs/com.umeng.message.UmengIntentService 1447 | com.xingin.xhs/com.umeng.message.UmengMessageCallbackHandlerService 1448 | com.xingin.xhs/com.umeng.message.UmengMessageIntentReceiverService 1449 | com.xingin.xhs/com.xiaomi.mipush.sdk.MessageHandleService 1450 | com.xingin.xhs/com.xiaomi.mipush.sdk.PushMessageHandler 1451 | com.xingin.xhs/com.xiaomi.push.service.XMJobService 1452 | com.xingin.xhs/com.xiaomi.push.service.XMPushService 1453 | com.xingin.xhs/org.android.agoo.accs.AgooService 1454 | com.xunlei.downloadprovider/anetwork.channel.aidl.NetworkService 1455 | com.xunlei.downloadprovider/com.getui.gtc.GtcService 1456 | com.xunlei.downloadprovider/com.igexin.sdk.PushService 1457 | com.xunlei.downloadprovider/com.taobao.accs.ChannelService 1458 | com.xunlei.downloadprovider/com.taobao.accs.ChannelService$KernelService 1459 | com.xunlei.downloadprovider/com.umeng.message.UmengIntentService 1460 | com.xunlei.downloadprovider/com.umeng.message.UmengMessageCallbackHandlerService 1461 | com.xunlei.downloadprovider/com.umeng.message.UmengMessageIntentReceiverService 1462 | com.xunlei.downloadprovider/com.xiaomi.mipush.sdk.MessageHandleService 1463 | com.xunlei.downloadprovider/com.xiaomi.mipush.sdk.PushMessageHandler 1464 | com.xunlei.downloadprovider/com.xiaomi.push.service.XMJobService 1465 | com.xunlei.downloadprovider/com.xiaomi.push.service.XMPushService 1466 | com.xunlei.downloadprovider/com.xunlei.downloadprovider.pushmessage.getui.GetuiPushReceiverIntentService 1467 | com.xunlei.downloadprovider/com.xunlei.downloadprovider.pushmessage.getui.GetuiPushService 1468 | com.xunlei.downloadprovider/mtopsdk.xstate.XStateService 1469 | com.xunlei.downloadprovider/org.android.agoo.accs.AgooService 1470 | com.xvideostudio.videoeditor/com.taobao.accs.ChannelService 1471 | com.xvideostudio.videoeditor/com.taobao.accs.ChannelService$KernelService 1472 | com.xvideostudio.videoeditor/com.umeng.message.UmengIntentService 1473 | com.xvideostudio.videoeditor/com.umeng.message.UmengMessageCallbackHandlerService 1474 | com.xvideostudio.videoeditor/com.umeng.message.UmengMessageIntentReceiverService 1475 | com.xvideostudio.videoeditor/org.android.agoo.accs.AgooService 1476 | com.yandex.browser/com.yandex.metrica.push.PushService 1477 | com.yelp.android/com.kahuna.sdk.KahunaPushService 1478 | com.yibasan.lizhifm/com.igexin.sdk.PushService 1479 | com.yibasan.lizhifm/com.xiaomi.mipush.sdk.MessageHandleService 1480 | com.yibasan.lizhifm/com.xiaomi.mipush.sdk.PushMessageHandler 1481 | com.yibasan.lizhifm/com.xiaomi.push.service.XMJobService 1482 | com.yibasan.lizhifm/com.xiaomi.push.service.XMPushService 1483 | com.yibasan.lizhifm/io.rong.push.PushService 1484 | com.yibasan.lizhifm/io.rong.push.core.MessageHandleService 1485 | com.yidian.xiaomi/com.taobao.accs.ChannelService 1486 | com.yidian.xiaomi/com.umeng.message.UmengIntentService 1487 | com.yidian.xiaomi/com.umeng.message.UmengMessageCallbackHandlerService 1488 | com.yidian.xiaomi/com.umeng.message.UmengMessageIntentReceiverService 1489 | com.yidian.xiaomi/com.xiaomi.mipush.sdk.MessageHandleService 1490 | com.yidian.xiaomi/com.xiaomi.mipush.sdk.PushMessageHandler 1491 | com.yidian.xiaomi/com.xiaomi.push.service.XMJobService 1492 | com.yidian.xiaomi/com.xiaomi.push.service.XMPushService 1493 | com.yidian.xiaomi/com.yidian.news.util.DebugReportService 1494 | com.yidian.xiaomi/org.android.agoo.accs.AgooService 1495 | com.yxkj.jysq/com.tencent.android.tpush.rpc.XGRemoteService 1496 | com.yxkj.jysq/com.tencent.android.tpush.service.XGPushService 1497 | com.zhaopin.social/com.igexin.download.DownloadService 1498 | com.zhaopin.social/com.igexin.getuiext.service.GetuiExtService 1499 | com.zhaopin.social/com.igexin.sdk.PushService 1500 | com.zhihu.android/com.avos.avoscloud.PushService 1501 | com.zhihu.android/com.igexin.sdk.PushService 1502 | com.zhihu.android/com.xiaomi.mipush.sdk.MessageHandleService 1503 | com.zhihu.android/com.xiaomi.mipush.sdk.PushMessageHandler 1504 | com.zhihu.android/com.xiaomi.push.service.XMJobService 1505 | com.zhihu.android/com.xiaomi.push.service.XMPushService 1506 | com.zhihu.android/com.zhihu.android.app.jobservice.AdTracksPushService 1507 | com.zhihu.android/com.zhihu.android.push.getui.GetuiIntentService 1508 | com.zhihu.android/com.zhihu.android.push.getui.GetuiPushService 1509 | com.zhihu.android/com.zhihu.android.push.jobservice.PollingPushService 1510 | com.zhihu.circlely.android/com.avos.avoscloud.PushService 1511 | ctrip.android.view/com.xiaomi.mipush.sdk.MessageHandleService 1512 | ctrip.android.view/com.xiaomi.mipush.sdk.PushMessageHandler 1513 | ctrip.android.view/ctrip.android.pushsdk.PushService 1514 | fm.xiami.main/anetwork.channel.aidl.NetworkService 1515 | fm.xiami.main/com.taobao.accs.ChannelService$KernelService 1516 | fm.xiami.main/com.taobao.agoo.TaobaoMessageIntentReceiverService 1517 | fm.xiami.main/com.taobao.nbcache.service.NBCacheService 1518 | fm.xiami.main/com.xiaomi.mipush.sdk.MessageHandleService 1519 | fm.xiami.main/com.xiaomi.mipush.sdk.PushMessageHandler 1520 | fm.xiami.main/mtopsdk.xstate.XStateService 1521 | fm.xiami.main/org.android.agoo.accs.AgooService 1522 | net.luoo.LuooFM/cn.jpush.android.service.DaemonService 1523 | net.luoo.LuooFM/cn.jpush.android.service.PushService 1524 | one.hh.oneclient/com.igexin.download.DownloadService 1525 | one.hh.oneclient/com.igexin.getuiext.service.GetuiExtService 1526 | one.hh.oneclient/com.igexin.sdk.PushService 1527 | one.hh.oneclient/com.igexin.sdk.PushServiceUser 1528 | one.hh.oneclient/com.umeng.message.UmengIntentService 1529 | one.hh.oneclient/com.umeng.message.UmengMessageCallbackHandlerService 1530 | one.hh.oneclient/com.umeng.message.UmengMessageIntentReceiverService 1531 | one.hh.oneclient/com.umeng.message.UmengService 1532 | one.hh.oneclient/com.umeng.message.local.UmengLocalNotificationService 1533 | org.geekbang.geekTime/com.taobao.accs.ChannelService 1534 | org.geekbang.geekTime/com.taobao.accs.ChannelService$KernelService 1535 | org.geekbang.geekTime/com.umeng.message.UmengIntentService 1536 | org.geekbang.geekTime/com.umeng.message.UmengMessageCallbackHandlerService 1537 | org.geekbang.geekTime/com.umeng.message.UmengMessageIntentReceiverService 1538 | org.geekbang.geekTime/com.xiaomi.mipush.sdk.MessageHandleService 1539 | org.geekbang.geekTime/com.xiaomi.mipush.sdk.PushMessageHandler 1540 | org.geekbang.geekTime/org.android.agoo.accs.AgooService 1541 | tunein.player/tunein.library.push.c2dm.C2DMPushService 1542 | tunein.player/tunein.services.DebugService 1543 | tv.danmaku.bili/com.sobot.chat.core.channel.SobotTCPServer 1544 | tv.danmaku.bili/com.xiaomi.mipush.sdk.MessageHandleService 1545 | tv.danmaku.bili/com.xiaomi.mipush.sdk.PushMessageHandler 1546 | tv.danmaku.bili/com.xiaomi.push.service.XMJobService 1547 | tv.danmaku.bili/com.xiaomi.push.service.XMPushService 1548 | -------------------------------------------------------------------------------- /mat2ifw_Auto.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | from functools import reduce 4 | def comb(s1,s2): return s1 + "\n" + s2 5 | matService = [] 6 | matReciever = [] 7 | matActivity = [] 8 | matUnknown = [] 9 | 10 | for line in open("mat.txt"): 11 | if "service" in line.lower(): 12 | matService.append(" ") 13 | elif "receiver" in line.lower(): 14 | matReciever.append(" ") 15 | elif "activity" in line.lower(): 16 | matActivity.append(" ") 17 | else: 18 | matUnknown.append(" ") 19 | 20 | if len(matService) > 0: 21 | ifwServiceText = "\n" + reduce(comb,matService) + "\n" 22 | else: 23 | ifwServiceText = "" 24 | 25 | if len(matReciever) > 0: 26 | ifwRecieverText = "\n" + reduce(comb,matReciever) + "\n" 27 | else: 28 | ifwRecieverText = "" 29 | 30 | if len(matActivity) > 0: 31 | ifwActivityText = "\n" + reduce(comb,matActivity) + "\n" 32 | else: 33 | ifwActivityText = "" 34 | 35 | if len(matUnknown) > 0: 36 | ifwUnknownText = "" 37 | else: 38 | ifwUnknownText = "" 39 | 40 | result = "\n" + ifwServiceText + "\n" + ifwRecieverText + "\n" + ifwActivityText + "\n\n" + ifwUnknownText + "\n\n" 41 | print(result) 42 | fo = open("ifw.xml", "w") 43 | fo.write(result) 44 | fo.close() 45 | 46 | -------------------------------------------------------------------------------- /mat2ifw_Easy.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | from functools import reduce 3 | def addComp(prefix,str): return "<"+prefix+" block=\"true\" log=\"false\">\n" + str + "\n" 4 | mat = [] 5 | for line in open("mat.txt"): 6 | mat.append(" ") 7 | matR = reduce(lambda s1,s2:s1+"\n"+s2,mat) 8 | result = "\n" + addComp("service",matR) + "\n" + addComp("broadcast",matR) + "\n" + addComp("activity",matR) + "\n" 9 | fo = open("ifw.xml", "w") 10 | fo.write(result) 11 | fo.close() 12 | -------------------------------------------------------------------------------- /mat2ifw_Easy_enhanced.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # about IFW: https://cn.apkjam.com/blog/ifw.html 3 | # source: https://github.com/apkjam/MAT2IFW 4 | # author: https://cn.apkjam.com 5 | 6 | from functools import reduce 7 | import re 8 | import os 9 | 10 | try: 11 | os.mkdir('ifw') 12 | except: 13 | pass 14 | 15 | def addComp(prefix,str): return "<"+prefix+" block=\"true\" log=\"false\">\n" + str + "\n" 16 | mat = [] 17 | appName = [] 18 | 19 | for i in open("mat.txt"): 20 | appName.append(re.sub(r"/.*", "", i)) 21 | 22 | newAppName = list(set(appName)) 23 | 24 | for line in open("mat.txt"): 25 | mat.append("") 26 | 27 | for i in newAppName: 28 | ii = i.replace("\n","/") 29 | i = i.replace("\n","") 30 | newMat = [] 31 | for j in mat: 32 | if str(ii) in str(j): 33 | newMat.append(j) 34 | else: 35 | continue 36 | 37 | matR = reduce(lambda s1,s2:s1+"\n"+s2,newMat) 38 | 39 | result = "\n" + addComp("service",matR) + "\n" + addComp("broadcast",matR) + "\n" + addComp("activity",matR) + "\n" 40 | 41 | outputPath = os.path.join("./ifw", i+".xml") 42 | fo = open(outputPath, "w") 43 | fo.write(result) 44 | fo.close() 45 | -------------------------------------------------------------------------------- /mat2ifw_Easy_enhanced.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ######################################### 4 | # Name: mat2ifw_Easy_enhanced.sh 5 | # Input file: ./mat.txt 6 | # Output dir: ./ifw/ 7 | # Script: ./mat2ifw_Easy_enhanced.sh 8 | # copy the original file to the Input 9 | # dir, run the script mat2ifw_Easy_enhanced.sh, 10 | # check the result under Out dir. 11 | ######################################### 12 | filename="./mat.txt" 13 | declare -a array 14 | 15 | a=`cat $filename | awk -F "/" '{print $1}' | uniq` 16 | array=($a) 17 | srclist=$(cat $filename | sed '/./{s/^/ /g}') 18 | 19 | for i in ${a[*]}; do 20 | 21 | file="$i.xml" 22 | midlist=$(echo "${srclist}" | grep $i) 23 | dstlist=" 24 | 25 | "${midlist}" 26 | 27 | 28 | "${midlist}" 29 | 30 | 31 | "${midlist}" 32 | 33 | " 34 | echo "${dstlist}" > ./ifw/$file 35 | 36 | done 37 | 38 | --------------------------------------------------------------------------------