(className, dexfile)
| 8 | }; |
| 9 | |
| 10 | function checkLoadDex(className, dexfile) { |
| 11 | Java.perform(function() { |
| 12 | if (!classExists(className)) { |
| 13 | Java.openClassFile(dexfile).load(); |
| 14 | console.log("load " + dexfile); |
| 15 | } |
| 16 | }); |
| 17 | }; |
| 18 | |
| 19 | function classExists(className) { |
| 20 | var exists = false; |
nothing calls this directly
no test coverage detected