(name = undefined)
| 7726 | } |
| 7727 | } |
| 7728 | function getLibPath(name = undefined) { |
| 7729 | let retStr = ""; |
| 7730 | Java.perform(() => { |
| 7731 | let context = Java.use('android.app.ActivityThread').currentApplication().getApplicationContext(); |
| 7732 | let libPath = context.getApplicationInfo().nativeLibraryDir.value; |
| 7733 | retStr = libPath + "/" + (name == undefined ? "" : name); |
| 7734 | }); |
| 7735 | return retStr; |
| 7736 | } |
| 7737 | } |
| 7738 | exports.getApkInfo = getApkInfo; |
| 7739 | function getUnityInfo() { |