Skip to content

Commit

Permalink
chore: show isa in TroubleshootFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Aug 11, 2024
1 parent b8a19f1 commit 66ee050
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ import io.github.qauxv.util.dexkit.DexKitTarget
import io.github.qauxv.util.dexkit.ordinal
import io.github.qauxv.util.dexkit.values
import io.github.qauxv.util.hostInfo
import io.github.qauxv.util.soloader.NativeLoader
import me.ketal.base.PluginDelayableHook
import me.singleneuron.hook.decorator.FxxkQQBrowser
import kotlin.system.exitProcess
Expand Down Expand Up @@ -477,7 +478,9 @@ class TroubleshootFragment : BaseRootLayoutFragment() {
val hook = StartupInfo.requireHookBridge()
var statusInfo = "PID: " + android.os.Process.myPid() +
", UID: " + android.os.Process.myUid() +
", " + (if (android.os.Process.is64Bit()) "64 bit" else "32 bit") + "\n" +
", ISA: " + NativeLoader.getIsaName(NativeLoader.getPrimaryNativeLibraryIsa()) +
(if (NativeLoader.isSecondaryNativeLibraryNeeded(requireContext())) "+" +
NativeLoader.getIsaName(NativeLoader.getSecondaryNativeLibraryIsa()) else "") + "\n" +
"Xposed API version: " + hook.apiLevel + "\n" +
"module: " + StartupInfo.getModulePath() + "\n" +
"ctx.dataDir: " + hostInfo.application.dataDir + "\n"
Expand Down

0 comments on commit 66ee050

Please sign in to comment.