Just search xposed section, don't expect to be spoon-fed.That means it is in development process or already developed but not released
Just search xposed section, don't expect to be spoon-fed.That means it is in development process or already developed but not released
I honestly have no idea what you're talking about, but complaining about folks that have to install magisk doesn't get anyone anywhereNot only do I expect to use it, I am using Xposed currently.
If you have nothing informed or helpful to add, keep your drivel on Facebook where it belongs thanks.
I honestly have no idea what you're talking about, but complaining about folks that have to install magisk doesn't get anyone anywhere
No! Keep replying, this is getting pathetic...If you don't know what someone's talking about then don't post in response to it. Pretty straightforward concept, no?
@romracer Do you think there's any way to make your last systemless version for MM compatible with Google's recent November security updates? Seems like the changes Google introduced break Xposed.
(grabs popcorn )[emoji71]
Hey all. I am currently building a rom for the Nexus 6 Android L 5.1.1. With the ROM I am including xposed and gravity box, to allow the users to customise it. I have an aroma installer setup to allow users to configure the rom. During the selection process, it has an option for Xposed and Gravity Box.
So far I have it setup, so if you select the option, it will extract and run the xposed installer and install the framework zip file. It will then also install the necessary apk's to the data partition. The user then boots up the rom and goes in then activates the module and reboots.
I would like to skip the last step if possible. Can I setup the installer to activate Gravity Box on first boot? I dont know if that is possible.
Edit just found out, I am getting the following error during the install process, trying to run the zip file:
******************************
Xposed framework installer zip
******************************
- Mounting /system and rootfs
mount: mounting /dev/block/mmcblk0p41 on /system failed: Device or resource busy
- Extracting files
unzip: can't open /tmp/xposed/xposed.zip[.zip]
! Failed: /tmp/xposed/system/xposed not found!
run_program: child exited with status 1
Here is the code I am using in aroma to run the zip:
if
file_getprop("/tmp/aroma-data/tweaks.prop","item.0.4") == "1"
then
ui_print(" - Xposed and Gravity Box");
package_extract_dir("mods/xposed", "/data"); - This folder contains the two apks I install into the data directory
package_extract_dir("xposed", "/tmp/xposed"); - This folder contains the zip file for the framwork. I simply renamed to xposed.zip to make it easier.
run_program("/sbin/busybox", "unzip", "/tmp/xposed/xposed.zip", "META-INF/com/google/android/*", "-d", "/tmp/xposed");
run_program("/sbin/busybox", "sh", "/tmp/xposed/META-INF/com/google/android/update-binary", "dummy", "1", "/tmp/xposed/xposed.zip");
endif;
#Enable Unofficial Systemless Xposed Framework
if
file_getprop("/tmp/aroma/customize.prop", "group12") == "opt3"
then
ui_print(" ");
ui_print(" Install Unofficial Systemless Xposed Framework v87");
package_extract_dir("data/app/xposedinstaller", "/system/priv-app/xposedinstaller");
package_extract_dir("resources/features/xposed/systemless", "/tmp/xposed");
run_program("/sbin/busybox", "unzip", "/tmp/xposed/xposed-v87.0-sdk23-topjohnwu.zip", "META-INF/com/google/android/*", "-d", "/tmp/xposed");
run_program("/sbin/busybox", "sh", "/tmp/xposed/META-INF/com/google/android/update-binary", "dummy", "1", "/tmp/xposed/xposed-v87.0-sdk23-topjohnwu.zip");
endif;
This is an old question but I see it has not yet been resolved. If you want to flash xposed framework from your custom rom, you must have busybox installed and in your updater-script you must have "symlink("busybox", "/system/xbin/unzip")";
Yes but he wanted systemmode as he is still on pre Android 6.0 MarshMallow.
The BusyBox advise is good though but the Xposed doesn't that require the Magisk framework so that is not a good advice.
Probably he should go for official version from Rovo89.
Xposed systemless required SuperSU systemless and magist in its latest version. During the installation of the rom, it must validate all these requirements. In my rom project, I have support for supersu systemless and "stock root mode" like Xposed and Xposed systemless...
In fact, it was not a question. I wanted to share the code that I used to add xposed (stock and systemless) support to my ROM.So your question changed and this is not the same question you posted before.
Maybe time to update your question and post it again, maybe this time somebody can help you out.
01-27 12:52:29.799 I/Xposed ( 885): -----------------
01-27 12:52:29.799 I/Xposed ( 885): Starting Xposed version 86.1 (by romracer / 20160928), compiled for SDK 23
01-27 12:52:29.799 I/Xposed ( 885): Device: E5803 (Sony), Android version 6.0.1 (SDK 23)
01-27 12:52:29.799 I/Xposed ( 885): ROM: 32.2.A.5.11
01-27 12:52:29.799 I/Xposed ( 885): Build fingerprint: Sony/E5803/E5803:6.0.1/32.2.A.5.11/3529879493:user/release-keys
01-27 12:52:29.799 I/Xposed ( 885): Platform: arm64-v8a, 64-bit binary, system server: yes
01-27 12:52:29.799 I/Xposed ( 885): SELinux enabled: yes, enforcing: no
01-27 12:52:31.948 I/Xposed ( 885): -----------------
01-27 12:52:31.949 I/Xposed ( 885): Added Xposed (/su/xposed/system/framework/XposedBridge.jar) to CLASSPATH
01-27 12:52:32.271 I/Xposed ( 885): Detected ART runtime
01-27 12:52:32.286 I/Xposed ( 885): Found Xposed class 'de/robv/android/xposed/XposedBridge', now initializing
01-27 12:52:32.618 E/Xposed ( 885): Cannot load any modules because /data/data/de.robv.android.xposed.installer/conf/modules.list was not found
01-27 12:52:40.947 I/Xposed ( 887): -----------------
01-27 12:52:40.947 I/Xposed ( 887): Starting Xposed version 86.1 (by romracer / 20160928), compiled for SDK 23
01-27 12:52:40.947 I/Xposed ( 887): Device: E5803 (Sony), Android version 6.0.1 (SDK 23)
01-27 12:52:40.947 I/Xposed ( 887): ROM: 32.2.A.5.11
01-27 12:52:40.947 I/Xposed ( 887): Build fingerprint: Sony/E5803/E5803:6.0.1/32.2.A.5.11/3529879493:user/release-keys
01-27 12:52:40.947 I/Xposed ( 887): Platform: arm64-v8a, 32-bit binary, system server: no
01-27 12:52:40.947 I/Xposed ( 887): SELinux enabled: yes, enforcing: no
01-27 12:52:42.953 I/Xposed ( 887): -----------------
01-27 12:52:42.953 I/Xposed ( 887): Added Xposed (/su/xposed/system/framework/XposedBridge.jar) to CLASSPATH
01-27 12:52:43.189 I/Xposed ( 887): Detected ART runtime
01-27 12:52:43.199 I/Xposed ( 887): Found Xposed class 'de/robv/android/xposed/XposedBridge', now initializing
01-27 12:52:43.418 E/Xposed ( 887): Cannot load any modules because /data/data/de.robv.android.xposed.installer/conf/modules.list was not found
I installed latest xposed on my device but it's not active, how can i activate it?
Code:01-27 12:52:29.799 I/Xposed ( 885): ----------------- 01-27 12:52:29.799 I/Xposed ( 885): Starting Xposed version 86.1 (by romracer / 20160928), compiled for SDK 23 01-27 12:52:29.799 I/Xposed ( 885): Device: E5803 (Sony), Android version 6.0.1 (SDK 23) 01-27 12:52:29.799 I/Xposed ( 885): ROM: 32.2.A.5.11 01-27 12:52:29.799 I/Xposed ( 885): Build fingerprint: Sony/E5803/E5803:6.0.1/32.2.A.5.11/3529879493:user/release-keys 01-27 12:52:29.799 I/Xposed ( 885): Platform: arm64-v8a, 64-bit binary, system server: yes 01-27 12:52:29.799 I/Xposed ( 885): SELinux enabled: yes, enforcing: no 01-27 12:52:31.948 I/Xposed ( 885): ----------------- 01-27 12:52:31.949 I/Xposed ( 885): Added Xposed (/su/xposed/system/framework/XposedBridge.jar) to CLASSPATH 01-27 12:52:32.271 I/Xposed ( 885): Detected ART runtime 01-27 12:52:32.286 I/Xposed ( 885): Found Xposed class 'de/robv/android/xposed/XposedBridge', now initializing 01-27 12:52:32.618 E/Xposed ( 885): Cannot load any modules because /data/data/de.robv.android.xposed.installer/conf/modules.list was not found 01-27 12:52:40.947 I/Xposed ( 887): ----------------- 01-27 12:52:40.947 I/Xposed ( 887): Starting Xposed version 86.1 (by romracer / 20160928), compiled for SDK 23 01-27 12:52:40.947 I/Xposed ( 887): Device: E5803 (Sony), Android version 6.0.1 (SDK 23) 01-27 12:52:40.947 I/Xposed ( 887): ROM: 32.2.A.5.11 01-27 12:52:40.947 I/Xposed ( 887): Build fingerprint: Sony/E5803/E5803:6.0.1/32.2.A.5.11/3529879493:user/release-keys 01-27 12:52:40.947 I/Xposed ( 887): Platform: arm64-v8a, 32-bit binary, system server: no 01-27 12:52:40.947 I/Xposed ( 887): SELinux enabled: yes, enforcing: no 01-27 12:52:42.953 I/Xposed ( 887): ----------------- 01-27 12:52:42.953 I/Xposed ( 887): Added Xposed (/su/xposed/system/framework/XposedBridge.jar) to CLASSPATH 01-27 12:52:43.189 I/Xposed ( 887): Detected ART runtime 01-27 12:52:43.199 I/Xposed ( 887): Found Xposed class 'de/robv/android/xposed/XposedBridge', now initializing 01-27 12:52:43.418 E/Xposed ( 887): Cannot load any modules because /data/data/de.robv.android.xposed.installer/conf/modules.list was not found
Same result. What am I doing wrong???
@romracer
Can you update the xposed to work with 5 jan 2017 security patch?
I am using redmi note 3 (kenzo) with Lineage os 13 marshmallow, v86 gave me bootloops,but magisk one by topjohnwu(v87) worked, but i dont wanna flash magisk so....