Results 57 comments of Mikanoshi

Haven't tried Sciter.JS, most likely not, I'm not planning to add support for it.

The whole OLE section was not updated for latest version. I never used it, so I have no idea how it works :)

It does not connect at all after the network problems, keeps throwing different exceptions. Only restarting program helps.

Everything is in Chinese :) Only one question - can EXposed and VirtualXposed hook system frameworks? If not, then they are almost useless. As I understand they inject Xposed into...

I'm on MIUI 10, so I'll have to wait till I'm old :D Xposed is not even working on MIUI 9 Android 8...

Yes, 7 works, 8-9 not. I tried every version out there)

Fixed with this hook: ``` java XposedHelpers.findAndHookMethod("android.app.ResourcesManager", null, "applyConfigurationToResourcesLocked", Configuration.class, "android.content.res.CompatibilityInfo", new XC_MethodHook(XCallback.PRIORITY_HIGHEST) { @Override @SuppressWarnings("unchecked") protected void beforeHookedMethod(MethodHookParam param) throws Throwable { ArrayMap mActiveResources = (ArrayMap)XposedHelpers.getObjectField(param.thisObject, "mActiveResources"); if (mActiveResources.size()...

I cannot reproduce this bug reliably myself, it is random. Configuration is updated during device orientation changes, that is when bootloop happens most of the times.

@tallavi Use this module, it fixes the crash. Contains my code above. http://mikanoshi.name/share/FixRandomReboot.apk I don't add this to Sense Toolbox because the module itself is not causing the problem directly....

Stack trace just doesn't have anything that points to a particular module. I don't modify mActiveResources and don't use AndroidAppHelper, `createInstance()` on the other hand is used in a lot...