[DISCUSSION] Xposed for Lollipop

Search This thread

rovo89

Senior Recognized Developer
Jan 4, 2012
2,585
81,434
It seems that many people have waited for this moment, and here we are:


Xposed for Lollipop is finally here!


You can use this thread for discussions. Please check the read-only thread for the download links and official updates.




Edit by @Darth.

Rovo89 has been kind enough to let us add a few things to help stop the repeated questions that are asked here.... And thanks to RootSU, we'll be able to add a FAQ........ So...

Please read post 2 below.... Very carefully before posting a question here.
 
Last edited by a moderator:

Portgas D. Ace

Inactive Recognized Contributor
Jun 12, 2014
4,354
3,160
Bergisches Land
Nexus 7
Google Pixel 6
Unofficial Q&A

PLEASE READ:

If you have questions about which Xposed version to use, read this post and use the table to identify the correct version for your device.

If you encounter any issue or things are still unclear, try to search this thread by using the Search function before posting anything. Lots of issues/questions have already being asked and/or solved. If this doesn't work, please include information about your device, its current Android version, the files you tried to flash/install and steps to reproduce the issue in your post. This way other members are able to help you in a timely manner.



Hey everyone,

Since the primary thread information was taken to a read-only thread, the regulars here have been answering the same questions with even mor frequency, so here we hope to address some of those basic questions in brief:

Q: What does "Alpha" mean?
A:
Software goes through several stages before final release. Alpha and Beta are a couple. Beta is usually released strategically to experienced testers to get feedback and find bugs. Alpha is less mature than Beta and is often not released outside the company that produced it. We're very lucky to get alpha releases, but beware, it is expected to be buggy and you should be experienced in Android usage before taking on Alpha testing.


Q: What do I need to do BEFORE flashing Xposed?
A:
A full Nandroid Backup of your system (preferrably by using your recovery). If something goes horribly wrong during flashing/installation, you can revert all changes made to your system quite easily.


Q: What recovery can I use?
A:
The latest zips provided by @rovo89 are now signed, so any recovery should work now (including cyanogen recovery) however, Philz recovery struggles to mount system correctly and detects the recovery sdk 19 instead of the ROM recovery. You can try manually mounting system in recovery first (instructions are lower down this thread) though, you should probably move over to TWRP now.

Some of the unofficial versions are not signed zips, so you'll need a recovery that can turn off signature verification. TWRP is probably the best bet all round, as cyanogen recovery doesn't allow this.


Q: Which is the right Xposed for me?
A:
It's all getting rather confusing.

Here's what you need to know...

Almost all android devices have an ARM based CPU. A small handful of those are 64 bit (ARM64), released this year. Obviously the ones that are not 64 bit are 32 bit.

All ARM version 7 CPUs are 32 bit. Although all ARM version 8 CPUs were designed as 64 bit, some only operate in a 32 bit mode.

A small set of android devices now run 32 bit Intel CPUs, referred to as x86.

What you first need to do is find out what CPU your phone has. If its intel x86, that's quite easy to find out by reading the specs.

For others, try this:

Google "your phone CPU? “ to get the CPU name.
Google "your CPU ARM Version?“ to get the ARM version.

Example...

Google "Nexus 6 CPU" - answer Snapdragon 805
Google "snapdragon 805 ARM version?" - answer ARMv7

NOTE: For Snapdragon CPU's, check this Wikipedia article.

You can also use AIDA64 from the Google Play Store or apkmirror.com, which will tell you what ARM version you have (look for Instruction Set). Quite easy way.

Then use that information to use the table below to find the right version for your device (The second table is for users with a TouchWiz-based ROM, so mostly Samsung users. The first one is for all other users.) Links to the Xposed versions are given below the image.


EDIT: the flow chart, which was used in the past to identify the correct Xposed version one needs has been replaced by a table, which should be easier to read.

How to read the table:
If you do not know how to read the table, it is very easy. If you have a Samsung device (either with stock ROM or TouchWiz-based custom ROM), use the second table ("TouchWiz-based ROMs (Samsung users)"). If not, use the first table. Then identify your CPU ARM version as described above as well as your Android version. With those information available, go to the corresponding field in the table and that's it, you have just identified the required Xposed version for your device.


attachment.php


Download threads:


Q: Does this work on my rom/device?
A:
It should work. You can search the thread to see if anyone else got it to work, or you can do what everyone else does - backup and try it for yourself.


Q: What files do I need?
A:
The Xposed installer (.apk) and the flashable Framework (.zip)


Q: Error in Xposed app "xposed not yet compatible with SDK 22 or your processor architecture (armeabi-v7a)" and may also refer to libdvm.so
A:
This happens if you are using the legacy KitKat Xposed app (Xposed Installer v2.7 or below). Uninstall it and ensure you are running the latest alpha (currently: XposedInstaller_3.0_alpha4.apk) from the official rovo89 thread.


Q: Error in recovery, "wrong sdk version / wrong arm version". How to solve?
A:
Read this error very carefully.

If it says "Wrong SDK version: 22, expected 21 - 21", it means you're flashing the SDK 21 version on an SDK 22 based ROM.

Similarly, if it says "Wrong SDK version: 21, expected 22 - 22", it means you're flashing the SDK 22 version on an SDK 21 based ROM*

You're flashing the wrong zip for your ROM. Use the table above to identify the correct zip for you.

*Note, All 5.0.x ROMs are SDK21 based. All 5.1.x ROMs are SDK22 based. You're flashing the r

There is a similar, but slightly different error. If it says "Wrong SDK version: , expected 22 - 22" or it says If it says "Wrong SDK version: , expected 21 - 21" , then something else is wrong. Note the blank space after "version:"? This means it cannot determine your SDK version from the /system/build.prop.

Withing the flashable zip is an updater-binary that reads your build.prop before flashing. The line of code looking for that is below:
Code:
ui_print "! Wrong SDK version: $API, expected $XMINSDK - $XMAXSDK"
See how where the blank space is, here, it says "$API"? That is a variable that is defined below:
Code:
API=$(cat /system/build.prop | grep "ro.build.version.sdk=" | dd bs=1 skip=21 count=2)
...Which basically says:

Look for "ro.build.version.sdk=" in build prop, then save next 2 characters as API$

If $API is blank, it means it cannot find "ro.build.version.sdk=21" or "ro.build.version.sdk=22" in your build.prop.

One of two reasons cause this.

1) It's not in your build.prop (well that is extremely unlikely)
2) The updater-binary cannot mount /system properly.

So to troubleshoot, check that "ro.build.version.sdk=" exists exactly in build.prop and that there are 2 characters after it. If there are, then API should NOT be blank and probably means system is not mounting, in which case, you can try mounting system via the recovery menu. If that still doesn't work, open a terminal emulator at the root folder (in TWRP) and type the following 2 commands:
Code:
mount -o ro /system 
mount -o rw,remount /system

Please also note that if this gives an error such as "cannot find system" then you may need a different recovery.

The same as above can also happen with the arm version, so if you know you're flashing the correct arm version for your device, then it's probably a system mounting issue.


Q: I can't find the latest Alpha, help!
A:
There are 2 parts of Xposed. There is the app (.apk) and the framework (a flashable .zip) and you need both.

The latest version of the app so far is alpha 3. When we talk about alpha 4 etc, these updates are just to the framework (zip). The zips are not named "alpha" though. The zips have a date in the file name instead. Read rovo89's posts clearly as he gives you that date when there is an update announcement.


Q: What is Armv7? Will it support my CPU? What about Armv8 / 64 Bit / Intel CPUs
A:
Armv7 is a CPU architecture. If you have a mainstream phone released since 2010, you most likely have Armv7. All Qualcomm and Exynos CPUs since then have been based on Armv7. Armv8 however is the architecture used in the new 64bit CPUs.

Intel CPUs are x86. They are not officially supported.


Q: Does this work on Android JellyBean/KitKat/Marshmallow?
A:
No. It's only for Lollipop.


Q: Where can I find the uninstaller?
A:
In the link found in post #1 or - in case you use wanam or arter97's version - in the corresponding threads.


Q: What's this red error about not being able to install the framework within the Xposed Installer app?
A:
It's not an error. It simply states that the framework can only be installed by recovery - which we know as we have already done it.


Q: Xposed won't work. All the files are present and correct. What to do?
A:
Check the logs in the app. If you see a line that says "found /data/data/de.robv.android.xposed.installer/config/disabled" then delete that "disabled" file and reboot. It should work.

If it doesn't work, try to do a soft reboot from within Xposed Installer app (Xposed Installer -> Framework -> Soft Reboot). Root permission has to be granted to the Xposed Installer app to do so (will be asked when clicking on the Soft Reboot button for the first time).


Q: I get in a bootloop, what to do?
A:
The first thing to try is wiping "dalvik" and cache via recovery. If this doesn't work, ensure you have flashed the correct Xposed version (this applies for Samsung users mostly). Else you can provide a log file which you can grab via ADB (search for "How to logcat" if you don't know how) and upload it either here (don't forget to link rovo89 in your post) or to rovo89's github repo (better option)


Q: TWRP states "not enough space in system". What is this about?
A:.
Not really related to Xposed, it just means that your system partition doesn't have enough free space to install Xposed. Maybe create some space by deleting Google related-apps from system that you don't need or that can be downloaded from Play Store. Ask in your device forum if you need specific advice.


Q: How do I update the Xposed framework to a newer version?
A:
You can dirty flash it through recovery (don't uninstall/wipe anything before flashing). Afterwards, wipe cache/dalvik and reboot. That's it.


Device Specific

Q: My LG device has Weather and Smartcover force closes. What to do?
A:
Those issues are fixed with Xposed framework v80 and later. If you encounter such issue, update the Xposed framework to version v80 or higher. If you are unable to update to v80 or later, you need to disable these apps before flashing. You can disable them afterwards, please see this post: http://xdaforums.com/showpost.php?p=59929667&postcount=5122.


Q: I get a low on space error on my Moto. What to do?
A:
The first thing to try is wiping "dalvik" and cache via recovery.


Q: It does not work on my Huawei/Xiaomi device. What to do?
A:
Chinese OEMs change a lot of the original Android code base, so most likely Xposed is not compatible with those devices (yet). There might be some compatibility in the future, but don't expect it in the next few days.


Q: It does not work on my MIUI device. What to do?
A:
There is an XDA thread by SolarWarez dedicated to Xposed for MIUI-based devices.

Xposed MIUI
 

Attachments

  • Xposed.png
    Xposed.png
    56.3 KB · Views: 206,336
Last edited:

zelendel

Senior Member
Aug 11, 2008
23,360
20,608
OnePlus 6T
OnePlus 9
This thread was just started an already it had to be cleaned from pointless posts. Use the thanks button. Do not make pointless posts in the thread.

I understand You guys are excited but really? Come on.

If you dont have something constructive to post then dont. Do not clutter this thread Or it will be closed and only opened when the OP has something to post.
 

zelendel

Senior Member
Aug 11, 2008
23,360
20,608
OnePlus 6T
OnePlus 9
Look I already posted a warning. And people dont want to listen so let me make this very clear. The next pointless post will have this thread closed and only opened for the OP.


If you are posting a bug then you better have a logcat to go along with it. If it doesnt work because you didnt read the OP then too bad.
 

rovo89

Senior Recognized Developer
Jan 4, 2012
2,585
81,434
Read this after flashing zip on Note 4 Exynos. :D
So, just another reminder, it won't work on ARM v8 devices.

I actually wasn't aware that ARMv8 is available. It should work for that one, too. ;)

Bootloop in Galaxy S5 with Lollipop 5.0 :(
Bootloop in Galaxy S4 i9500 with Lollipop 5.0 TW

As always, I can't do anything without a logcat. Same for any other issues you might notice. If the device boots, but the framework is not shown as active, the Xposed log (in the installer) might be sufficient.
 

rivas741

Senior Member
Mar 6, 2012
123
32
Anaheim
Can't get it to work.

Installed the ZIP twice and the app still says framework not installed. on my Nexus 6 running stock Lollipop and FKU r14.
Well, it's an alpha for a reason. Thanks for your work dev! :victory:

EDIT: Add screenshot
 

Attachments

  • Screenshot_2015-02-13-13-32-17.jpg
    Screenshot_2015-02-13-13-32-17.jpg
    251.4 KB · Views: 106,233
Last edited:

Upstreammiami

Senior Member
Jun 8, 2010
4,344
1,088
37
Davie
Look I already posted a warning. And people dont want to listen so let me make this very clear. The next pointless post will have this thread closed and only opened for the OP.


If you are posting a bug then you better have a logcat to go along with it. If it doesnt work because you didnt read the OP then too bad.
I have done what op says I'm not retarded......after flash. app still says framework not installed and I have a g3...
 

GermainZ

Inactive Recognized Developer / Retired Forum Mod
Aug 3, 2012
6,170
8,805

idefiler6

Senior Member
May 16, 2011
454
51
CT
Nexus 6 5.0.2 on T-Mobile US - I also flashed the file like others are saying, but the installer app shows as not installed. Here's the log from Xposed:

PHP:
02-13 16:24:20.564 I/Xposed  (  348): -----------------
02-13 16:24:20.564 I/Xposed  (  348): Starting Xposed binary version 60, compiled for SDK 21
02-13 16:24:20.564 I/Xposed  (  348): Phone: Nexus 6 (motorola), Android version 5.0.2 (SDK 21)
02-13 16:24:20.564 I/Xposed  (  348): ROM: LRX22G test-keys
02-13 16:24:20.564 I/Xposed  (  348): Build fingerprint: google/shamu/shamu:5.0.2/LRX22G/1649326:user/release-keys
02-13 16:24:20.565 I/Xposed  (  348): Platform: armeabi-v7a, 32-bit binary, system server: yes
02-13 16:24:20.565 I/Xposed  (  348): SELinux enabled: yes, enforcing: yes
02-13 16:24:21.572 I/Xposed  (  348): -----------------
02-13 16:24:21.574 I/Xposed  (  348): Added Xposed (/system/framework/XposedBridge.jar) to CLASSPATH
02-13 16:24:22.296 I/Xposed  (  348): Detected ART runtime
02-13 16:24:22.373 I/Xposed  (  348): Found Xposed class de/robv/android/xposed/XposedBridge, now initializing
02-13 16:24:22.893 I/Xposed  (  348): Initializing XposedBridge version 60
02-13 16:24:23.094 I/Xposed  (  348): Errors during Xposed initialization
02-13 16:24:23.095 E/Xposed  (  348): java.io.FileNotFoundException: No such file or directory: /data/data/de.robv.android.xposed.installer/conf/modules.list
02-13 16:24:23.095 E/Xposed  (  348): 	at de.robv.android.xposed.services.ZygoteService.readFile(Native Method)
02-13 16:24:23.095 E/Xposed  (  348): 	at de.robv.android.xposed.services.BaseService.getFileInputStream(BaseService.java:116)
02-13 16:24:23.095 E/Xposed  (  348): 	at de.robv.android.xposed.XposedBridge.loadModules(XposedBridge.java:405)
02-13 16:24:23.095 E/Xposed  (  348): 	at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:103)
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1268
    It seems that many people have waited for this moment, and here we are:


    Xposed for Lollipop is finally here!


    You can use this thread for discussions. Please check the read-only thread for the download links and official updates.




    Edit by @Darth.

    Rovo89 has been kind enough to let us add a few things to help stop the repeated questions that are asked here.... And thanks to RootSU, we'll be able to add a FAQ........ So...

    Please read post 2 below.... Very carefully before posting a question here.
    726
    This thread was just started an already it had to be cleaned from pointless posts. Use the thanks button. Do not make pointless posts in the thread.

    I understand You guys are excited but really? Come on.

    If you dont have something constructive to post then dont. Do not clutter this thread Or it will be closed and only opened when the OP has something to post.
    444
    Unofficial Q&A

    PLEASE READ:

    If you have questions about which Xposed version to use, read this post and use the table to identify the correct version for your device.

    If you encounter any issue or things are still unclear, try to search this thread by using the Search function before posting anything. Lots of issues/questions have already being asked and/or solved. If this doesn't work, please include information about your device, its current Android version, the files you tried to flash/install and steps to reproduce the issue in your post. This way other members are able to help you in a timely manner.



    Hey everyone,

    Since the primary thread information was taken to a read-only thread, the regulars here have been answering the same questions with even mor frequency, so here we hope to address some of those basic questions in brief:

    Q: What does "Alpha" mean?
    A:
    Software goes through several stages before final release. Alpha and Beta are a couple. Beta is usually released strategically to experienced testers to get feedback and find bugs. Alpha is less mature than Beta and is often not released outside the company that produced it. We're very lucky to get alpha releases, but beware, it is expected to be buggy and you should be experienced in Android usage before taking on Alpha testing.


    Q: What do I need to do BEFORE flashing Xposed?
    A:
    A full Nandroid Backup of your system (preferrably by using your recovery). If something goes horribly wrong during flashing/installation, you can revert all changes made to your system quite easily.


    Q: What recovery can I use?
    A:
    The latest zips provided by @rovo89 are now signed, so any recovery should work now (including cyanogen recovery) however, Philz recovery struggles to mount system correctly and detects the recovery sdk 19 instead of the ROM recovery. You can try manually mounting system in recovery first (instructions are lower down this thread) though, you should probably move over to TWRP now.

    Some of the unofficial versions are not signed zips, so you'll need a recovery that can turn off signature verification. TWRP is probably the best bet all round, as cyanogen recovery doesn't allow this.


    Q: Which is the right Xposed for me?
    A:
    It's all getting rather confusing.

    Here's what you need to know...

    Almost all android devices have an ARM based CPU. A small handful of those are 64 bit (ARM64), released this year. Obviously the ones that are not 64 bit are 32 bit.

    All ARM version 7 CPUs are 32 bit. Although all ARM version 8 CPUs were designed as 64 bit, some only operate in a 32 bit mode.

    A small set of android devices now run 32 bit Intel CPUs, referred to as x86.

    What you first need to do is find out what CPU your phone has. If its intel x86, that's quite easy to find out by reading the specs.

    For others, try this:

    Google "your phone CPU? “ to get the CPU name.
    Google "your CPU ARM Version?“ to get the ARM version.

    Example...

    Google "Nexus 6 CPU" - answer Snapdragon 805
    Google "snapdragon 805 ARM version?" - answer ARMv7

    NOTE: For Snapdragon CPU's, check this Wikipedia article.

    You can also use AIDA64 from the Google Play Store or apkmirror.com, which will tell you what ARM version you have (look for Instruction Set). Quite easy way.

    Then use that information to use the table below to find the right version for your device (The second table is for users with a TouchWiz-based ROM, so mostly Samsung users. The first one is for all other users.) Links to the Xposed versions are given below the image.


    EDIT: the flow chart, which was used in the past to identify the correct Xposed version one needs has been replaced by a table, which should be easier to read.

    How to read the table:
    If you do not know how to read the table, it is very easy. If you have a Samsung device (either with stock ROM or TouchWiz-based custom ROM), use the second table ("TouchWiz-based ROMs (Samsung users)"). If not, use the first table. Then identify your CPU ARM version as described above as well as your Android version. With those information available, go to the corresponding field in the table and that's it, you have just identified the required Xposed version for your device.


    attachment.php


    Download threads:


    Q: Does this work on my rom/device?
    A:
    It should work. You can search the thread to see if anyone else got it to work, or you can do what everyone else does - backup and try it for yourself.


    Q: What files do I need?
    A:
    The Xposed installer (.apk) and the flashable Framework (.zip)


    Q: Error in Xposed app "xposed not yet compatible with SDK 22 or your processor architecture (armeabi-v7a)" and may also refer to libdvm.so
    A:
    This happens if you are using the legacy KitKat Xposed app (Xposed Installer v2.7 or below). Uninstall it and ensure you are running the latest alpha (currently: XposedInstaller_3.0_alpha4.apk) from the official rovo89 thread.


    Q: Error in recovery, "wrong sdk version / wrong arm version". How to solve?
    A:
    Read this error very carefully.

    If it says "Wrong SDK version: 22, expected 21 - 21", it means you're flashing the SDK 21 version on an SDK 22 based ROM.

    Similarly, if it says "Wrong SDK version: 21, expected 22 - 22", it means you're flashing the SDK 22 version on an SDK 21 based ROM*

    You're flashing the wrong zip for your ROM. Use the table above to identify the correct zip for you.

    *Note, All 5.0.x ROMs are SDK21 based. All 5.1.x ROMs are SDK22 based. You're flashing the r

    There is a similar, but slightly different error. If it says "Wrong SDK version: , expected 22 - 22" or it says If it says "Wrong SDK version: , expected 21 - 21" , then something else is wrong. Note the blank space after "version:"? This means it cannot determine your SDK version from the /system/build.prop.

    Withing the flashable zip is an updater-binary that reads your build.prop before flashing. The line of code looking for that is below:
    Code:
    ui_print "! Wrong SDK version: $API, expected $XMINSDK - $XMAXSDK"
    See how where the blank space is, here, it says "$API"? That is a variable that is defined below:
    Code:
    API=$(cat /system/build.prop | grep "ro.build.version.sdk=" | dd bs=1 skip=21 count=2)
    ...Which basically says:

    Look for "ro.build.version.sdk=" in build prop, then save next 2 characters as API$

    If $API is blank, it means it cannot find "ro.build.version.sdk=21" or "ro.build.version.sdk=22" in your build.prop.

    One of two reasons cause this.

    1) It's not in your build.prop (well that is extremely unlikely)
    2) The updater-binary cannot mount /system properly.

    So to troubleshoot, check that "ro.build.version.sdk=" exists exactly in build.prop and that there are 2 characters after it. If there are, then API should NOT be blank and probably means system is not mounting, in which case, you can try mounting system via the recovery menu. If that still doesn't work, open a terminal emulator at the root folder (in TWRP) and type the following 2 commands:
    Code:
    mount -o ro /system 
    mount -o rw,remount /system

    Please also note that if this gives an error such as "cannot find system" then you may need a different recovery.

    The same as above can also happen with the arm version, so if you know you're flashing the correct arm version for your device, then it's probably a system mounting issue.


    Q: I can't find the latest Alpha, help!
    A:
    There are 2 parts of Xposed. There is the app (.apk) and the framework (a flashable .zip) and you need both.

    The latest version of the app so far is alpha 3. When we talk about alpha 4 etc, these updates are just to the framework (zip). The zips are not named "alpha" though. The zips have a date in the file name instead. Read rovo89's posts clearly as he gives you that date when there is an update announcement.


    Q: What is Armv7? Will it support my CPU? What about Armv8 / 64 Bit / Intel CPUs
    A:
    Armv7 is a CPU architecture. If you have a mainstream phone released since 2010, you most likely have Armv7. All Qualcomm and Exynos CPUs since then have been based on Armv7. Armv8 however is the architecture used in the new 64bit CPUs.

    Intel CPUs are x86. They are not officially supported.


    Q: Does this work on Android JellyBean/KitKat/Marshmallow?
    A:
    No. It's only for Lollipop.


    Q: Where can I find the uninstaller?
    A:
    In the link found in post #1 or - in case you use wanam or arter97's version - in the corresponding threads.


    Q: What's this red error about not being able to install the framework within the Xposed Installer app?
    A:
    It's not an error. It simply states that the framework can only be installed by recovery - which we know as we have already done it.


    Q: Xposed won't work. All the files are present and correct. What to do?
    A:
    Check the logs in the app. If you see a line that says "found /data/data/de.robv.android.xposed.installer/config/disabled" then delete that "disabled" file and reboot. It should work.

    If it doesn't work, try to do a soft reboot from within Xposed Installer app (Xposed Installer -> Framework -> Soft Reboot). Root permission has to be granted to the Xposed Installer app to do so (will be asked when clicking on the Soft Reboot button for the first time).


    Q: I get in a bootloop, what to do?
    A:
    The first thing to try is wiping "dalvik" and cache via recovery. If this doesn't work, ensure you have flashed the correct Xposed version (this applies for Samsung users mostly). Else you can provide a log file which you can grab via ADB (search for "How to logcat" if you don't know how) and upload it either here (don't forget to link rovo89 in your post) or to rovo89's github repo (better option)


    Q: TWRP states "not enough space in system". What is this about?
    A:.
    Not really related to Xposed, it just means that your system partition doesn't have enough free space to install Xposed. Maybe create some space by deleting Google related-apps from system that you don't need or that can be downloaded from Play Store. Ask in your device forum if you need specific advice.


    Q: How do I update the Xposed framework to a newer version?
    A:
    You can dirty flash it through recovery (don't uninstall/wipe anything before flashing). Afterwards, wipe cache/dalvik and reboot. That's it.


    Device Specific

    Q: My LG device has Weather and Smartcover force closes. What to do?
    A:
    Those issues are fixed with Xposed framework v80 and later. If you encounter such issue, update the Xposed framework to version v80 or higher. If you are unable to update to v80 or later, you need to disable these apps before flashing. You can disable them afterwards, please see this post: http://xdaforums.com/showpost.php?p=59929667&postcount=5122.


    Q: I get a low on space error on my Moto. What to do?
    A:
    The first thing to try is wiping "dalvik" and cache via recovery.


    Q: It does not work on my Huawei/Xiaomi device. What to do?
    A:
    Chinese OEMs change a lot of the original Android code base, so most likely Xposed is not compatible with those devices (yet). There might be some compatibility in the future, but don't expect it in the next few days.


    Q: It does not work on my MIUI device. What to do?
    A:
    There is an XDA thread by SolarWarez dedicated to Xposed for MIUI-based devices.

    Xposed MIUI
    141
    Look I already posted a warning. And people dont want to listen so let me make this very clear. The next pointless post will have this thread closed and only opened for the OP.


    If you are posting a bug then you better have a logcat to go along with it. If it doesnt work because you didnt read the OP then too bad.
    100
    I just did a quick clean up for the last few pages and removed around fifty posts. I'm keeping this thread closed for a bit so that everyone gets this message. (Thread reopened.)

    Please remember the following -- it takes less than five minutes and avoids frustration for you and everyone subscribed to the thread:
    • Read the first post and try to search the thread (there's a handy search button which usually does an alright job). Many of your questions are already answered.
    • Do not ask about supported modules here. Check the module's thread instead. If a module isn't working, post in its thread -- not here.
    • Telling people to search/complaining about the noise only adds to the noise. Please, either provide them with an answer (and let them know they could've found it if they searched), or report the post and don't reply. If it's answered in the OP, just report it and move on.
    • If you're reporting a bug, include a logcat if the device isn't booting or a log from the Xposed Installer if the framework isn't activating (do check the OP first, as some issues are mentioned there).

    Cheers.