Showing posts with label Xposed. Show all posts
Showing posts with label Xposed. Show all posts

Thursday, 15 October 2015

xposed problem



Hi everyone,

I can't install xposed framework. Mine is B419.
I used Xposed for Lollipop by rovo89 and being 5.1.1., I used Unofficial Xposed for Android 5.1 - v74 / 20150911 / SDK22 by romracer.

Both gave me boot loops.

Any suggestion?

Thanks in advance!



Monday, 12 October 2015

Xposed: adding menu



How to add menu to activity without menu?



Xposed modules not working on MIUI 5.9.25



Xposed modules were working fine on MIUI 5.9.16. After update to 5.9.25 it stopped working.
Please help or confirm it is compatible or not?



Xposed for 4.4.4 (AOSP/CM 11)



Hello, which version do I've to flash in order to have xposed working on Android 4.4.4 with an arm based processor?
Don't tell me to upgrade



Xposed x64 Help



Really seeking input those who are rooted/have been rooted for awhile. I know x64 support for Xposed is a recent thing, but I've tried multiple builds of it for 5.X.X and even with @rovo89's latest build (v75/sdk21/arm64 from here: http://forum.xda-developers.com/show....php?t=3034811 I have no luck. After flashing Xposed, the phones boots up (usually very slowly, it'll sometimes even play the boot animation frame by frame) then it freezes at the end of the boot animation.

Tried reboots, wiping cache, etc. Luckily the uninstaller from the thread fixes everything. I assumed it would work due to it working on other M9 models but maybe I'm doing something wrong? Has anybody else managed to get Xposed working?

All help appreciated!



Can't boot into ROM because of incorrect Xposed Framework flashed



So my boot is stuck at the Cyanogen logo. I believe this happened because I flashed an incorrect zip file of a previous Xposed version (74 instead of 75).

I need to push either the Xposed Uninstaller, or the correct v75 version, to the phone's sdcard storage without being able to boot.

My phone is a rooted OnePlus One, with the latest Sultan's Unofficial CyanogenMod and TWRP Custom Recovery installed.

Booting into Fastboot Mode, the cmd command [fastboot devices] gives me back my device ID, but [adb devices] does not.

The [adb push] command does not seem to be working; I keep getting the [error: device '(null)' not found] message.

I tried USB mounting using the MOUNT menu in TWRP, but I keep hearing the Windows sound for *device unplugged*, and my storage never appears to allow me to explore it (I'm on Windows 8.1).


Any idea what's going on? Any help would be appreciated, thanks!



Sunday, 11 October 2015

[HELP] Slow Xposed downloads



First of all, SORRY if I posted this in the wrong section! :silly:

So, I've been trying to download my favorite modules from the Xposed repo, but it's been giving me a hard time. Whenever I try to use my WiFi (10mbps), the downloads are so slooooooooow. When I use my friend's WiFi(10mbps), they download faster. Downloads from Chrome, Play Store, etc. are at normal speed. Only Xposed downloads are slow.

Any suggestions?

w/ my WiFi:
https://www.youtube.com/embed/z2zqZ5glLKY

w/ my friend's WiFi:
https://www.youtube.com/embed/ZsmUNqkXBfw



install xposed, no knox?



I have a rooted s5 with lollipop 5.0. I managed to root it without tripping Knox by downgrading and using towelroot, then using mobile Odin to install a rooted version of lollipop. I followed the guide here here

Is there a similar sneaky way I can install xposed without tripping Knox? If I do it the above way using mobile Odin, will it trip knox?



Xposed for Edge+





How to install:
- Install Xposed Installer App
- Make a nandroid backup
- Copy the Xposed file and the uninstaller to your sdcard
- Flash "xposed-vxx-sdk22-tw-arm64-custom-build-by-wanam-xxxxxxxx.zip" through CWM recovery
- Reboot


*Flash in recovery: Download Here

*Xposed Installer: Download Here

*TWRP Recovery (flashing zip): Click Here

*Root: Click Here



Xposed and framework for lollipop 5.1.1



So, I had several modules working with previous version of KK, all of them properly working (one for all: AMPLIFY).
These modules helped a lot in order to extend battery life.
Now the question: is there anyone who has been able to install Xposed and Framework on our M7 with latest firmware B324 (LP 5.1.1). If so, please, advice:
- procedure to follow
- files to be used
I'm on Mt-L09 rooted and bootloader unlocked.
As far as I know Xposed is only in beta version for Nexus and just a couple of others, not M7.
For moderators: I haven' t fount any other thread in which this discussion has been already faced.
If I'm wrong, please link it with the others, or just delete this thread. Thank you.



Xposed vs wiko [problem]



Good evening everyone , I'm new to me called Emanuele..non know if they are suitable for the post , but I wanted to explain my problem , I installed Xposed works only the APM module GRAVITYBOX and other modules even if activated after the restart do not work ! How can I fix ? Thanks for the help



Xposed installer "Out of space" error



Ok,I don't know how complex it is right now but I can't install the xposed installer.:rolleyes: It gives me an error saying out of space with options to close and manage apps.I have over 500mb free so none of them help.I've run xposed modules before so it started just recently.please help and I'd be happy to provide any more information.Thanks in advance!!:)



Saturday, 10 October 2015

XClasses - A Xposed Library



Hello guys,
I want to share my library XClasses.
My idea was to see every XClass as an extension of the original class.
My aim was to improve the user experience during the development.
Also I wanted to increase the readability of xposed code.
So it's nothing special.
It's just my personal opinion how readable code should look like.

A small example:





Code:


public class XposedMain implements IXposedHookLoadPackage
{
        @Override
        public void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)
                        throws Throwable {
                if(lpparam.packageName.equals("com.android.systemui"))
                {
                        XposedHelpers.findAndHookMethod(TextView.class, "setText", CharSequence.class, TextView.BufferType.class, boolean.class, int.class, new XC_MethodHook() {
                                @Override
                                protected void beforeHookedMethod(MethodHookParam param)
                                                throws Throwable {
                                        TextView tv = (TextView)param.thisObject;
                                        CharSequence text = (CharSequence)param.args[0];
                                        TextView.BufferType type = (TextView.BufferType)param.args[1];
                                        boolean notifyBefore = (Boolean)param.args[2];
                                        int oldlen = (Integer)param.args[3];
                               
                                        XposedBridge.log("setText "+text+" with size "+tv.getTextSize());
                                }
                        });
                }
        }
}


The same code with XClasses:

Code:


// class 1
public class XposedMain implements IXposedHookLoadPackage
{
        @Override
        public void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)
                        throws Throwable {
                if(lpparam.packageName.equals("com.android.systemui"))
                {
                        setup(lpparam.classLoader);
                        hook(XTextView.class);
                }
        }
}
// class 2
public class XTextView
        extends AbstractXClass<TextView>
{
        public static String getOriginalClassName() { return TextView.class.getCanonicalName();        }

        public XTextView(TextView objectThis) { super(objectThis); }

        @BeforeOriginalMethod
        private void setText_Before(CharSequence text, TextView.BufferType type,
                                boolean notifyBefore, int oldlen) throws Throwable {
                XposedBridge.log("setText "+text+" with size "+getThis().getTextSize());
        }
}






If you would like to know more you should visit the following site: https://github.com/seebye/XClasses

Regards,
Seebye



is there working xposed for p8lite ale_l21



i tried many xposed installer flashed the sdk.zip but nothing only bootloop
i got it from this link
http://forum.xda-developers.com/show....php?t=3034811

so if there is working xposed will be great

thanks.



SISWOO C50 Longbow xposed?



Hey guys,
i got the SISWOO C50 Longbow running lollipop 5.1 with the stock rom provided by SISWOO,
and I'm trying to install xposed for about a month now, but i just can't get it running. I always get bootloops upon installing apps.
Can you help me ?



xposed 2.6.1 framework instaling problem



I have a huawei y300. I successfully installed xposed on a custom faosp 5.1.1 ROM.
on my stock ROM 4.1.1 i cant install the framework, it doesn't matter which method i use, direct or via recovery, after rebooting it says framework inst installed.
here is the error log:
-----------------
10 Oct 2015 12:20:55 UTC
Loading Xposed v54 (for Zygote)...
Running ROM 'Y300-0100V100R001C00B209' with fingerprint 'Huawei/Y300-0100/hwY300-0100:4.1.1/HuaweiY300-0100/C00B209:user/ota-rel-keys,release-keys'
Errors during Xposed initialization
java.lang.ClassCastException: class android.content.res.XResources doesn't extend class android.content.res.ResourcesEx
at de.robv.android.xposed.XposedBridge.cloneToSubclas s(XposedBridge.java:787)
at de.robv.android.xposed.XposedBridge.hookResources( XposedBridge.java:365)
at de.robv.android.xposed.XposedBridge.initXbridgeZyg ote(XposedBridge.java:267)
at de.robv.android.xposed.XposedBridge.main(XposedBri dge.java:117)
at dalvik.system.NativeStart.main(Native Method)



Moto x with xposed



loving the xposed module installed with CM 12. When i pick up the phone, it automatically lits up the screen so that i can unlock and use it (no physical buttons involved). However, if I put the phone on speakerphone on the desk, the screen dims off in a minute and when i pick it up, it doesn't lit up the screen automatically - can I do that within within xposed?

Thx



Xposed Framework



Hi everybody !
I'm posting this thread because I need your help, here is the thing.
I wanted to Swap my memory by the xposed way but apparently on Sony mobile it cause a bootloop...
So I wanted to know if somebody know how to fix it or if it's possible to avoid the bootloop.

I'm under a custom ROM, Resurrection Remix Togari, Xperia Z Ultra C6833

Thanks for your help ( excuse me for the bad English, I'm French..)



Friday, 9 October 2015

Xposed on 5.0



hi,

i was about to install xposed, but i found out there are some things to look out for maybe related to touchwiz! and 5.0 is also kinda making xposed hard to work as i read.

anybody here rocking xposed on his note 3 who can share some info

how it works and how they did install it?

thx guys!

Gesendet von meinem SM-N9005 mit Tapatalk



Internar of External storage permission fix [ROOT] [XPOSED]




Hello Guyz,
Today I'm gonna show you how you can fix permission of your storage. Sometimes We face write issue to our Internal or external storage in different rom or in stock rom. We need root+xposed for lollipop and only root access for kitkat device.

For Lollipop:
1. Root your device
2. Install xposed
3. Open xposed and go to download section
4. Search "Fix Lollipop Memory Leak" without quote
5. Install and active
6. Reboot

For KitKat:
1. Root your device
2. Download KitKat SD fix from play store
3. Install and run
4. Grant SuperSU permission
5. Reboot

DONE!!!!!!!!!!!!!!
Thanks for reading

WORKS WITH MOST LOLLIPOP AND KITKAK ROM