New ART lib @ android 4.4.1 more stable and support app thats not support art to. Maybe xposed can add support to ART again.
Just upgraded to 4.4.2 and now Xposed doesn't want to reinstall. Get a blank pop-up that only says ok. No app processes show either.
Sent from my Nexus 5 using xda app-developers app
I'd lost root. Thought I still had it. Rooted again and all's fine now.
Sent from my Nexus 5 using xda app-developers app
Re-root?Mine's NOT working in 4.4.2.
Here's what I did:
1. Uninstalled GravityBox
2. Rebooted, reinstalled stock kernel
3. Flashed update via stock recovery adb sideload
4. Reboot, and try to reinstall Xposed.
The result? It gives me an empty message, and rebooting will not fix it. Am I missing something?
final Class<?> phoneStatusBarClass = XposedHelpers.findClass(CLASS_PHONE_STATUSBAR, classLoader);
XposedHelpers.findMethodBestMatch(phoneStatusBarClass, "addIcon", new XC_MethodHook() {
well i don't have any ad block ,, the logcat keeps going and i can't keep up with it ,, and thanks anyway
i just hope @rovo89 read my problem
Hello there, I would like to know if the version 2.4.1 and 2.4 beta 1 are same. If not, can anyone please provide a download link to beta 1 ?
Thanks
Sent from my HTC Explorer A310e using Tapatalk
I'm neither an Android nor an ART expert, but from what I understand, it means we are getting native Linux executables. If that is so, and if Android uses ld.so to start programs, you can redirect library calls by loading another similar library via LD_PRELOAD.
Can you guys give me libart.so and compiler-art.so from system android 4.4.2? I want to try new lib for test framework. Thx you
Sent from my Xperia Arc S using XDA Premium 4 mobile app
I'm having a bit of trouble hooking a method and was hoping to gain some insight.
In this class:
com.android.systemui.phone.PhoneStatusBar
I'm trying to hook method addIcon():
public void addIcon(String paramString, int paramInt1, int paramInt2, StatusBarIcon paramStatusBarIcon)
Code:final Class<?> phoneStatusBarClass = XposedHelpers.findClass(CLASS_PHONE_STATUSBAR, classLoader); XposedHelpers.findMethodBestMatch(phoneStatusBarClass, "addIcon", new XC_MethodHook() {
I keep getting a NoSuchMethodError..#bestmatch since I can't specify the StatusBarIcon.class as a parameter. I don't need to manipulate that parameter, but it seems I need to reference it to at least match the method? Is there a generic "match this method name with any/all params" in the helpers, or is that what findMethodBestMatch is for? I had originally tried using the findAndHookMethod, but kept getting a NoSuchMethodError...#exact error.