[MOD][XPOSED][7.0+][N] OOS Background DEX Optimization Fix 0.1 - Xposed Framework Modules

Warning
This module fixes a problem on OOS 4.5 devices that crash when Xposed 87.3, 88 or 88.1 is active.
The root cause of the problem has been fixed in Xposed 88.2, so you do not need this module with Xposed 88.2 or later.
If you are experiencing soft-reboots and/or crashes without Xposed installed, this module cannot help you.
Requirements
An OOS Device.running Nougat
Xposed (Official @rovo89 or systemless Magisk)
Description
If you're trying to run Xposed on OOS Devices, you may notice that every time your phone is left charging for a while, Android crashes with:
Code:
OPConfig:ConfigProvider: Module:BackgroundOptConfig
BackgroundDexOptService: blacklist add : com.chinamworld.main
BackgroundDexOptService: blacklist add : cn.kidyn.qdmedical160
BackgroundDexOptService: blacklist add : com.paic.zhifu.wallet.activity
BackgroundDexOptService: blacklist add : com.pingan.paces.ccms
BackgroundDexOptService: blacklist add : cn.damai
BackgroundDexOptService: blacklist add : com.baidu.carlife
BackgroundDexOptService: [OnlineConfig] BackgroundOpt updated complete
art : No implementation found for java.lang.String dalvik.system.DexFile.getOatFileCompilerFilter(java.lang.String, java.lang.String) (tried Java_dalvik_system_DexFile_getOatFileCompilerFilter and Java_dalvik_system_DexFile_getOatFileCompilerFilter__Ljava_lang_String_2Ljava_lang_String_2)
AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: BackgroundDexOptService_IdleOptimization
AndroidRuntime: java.lang.UnsatisfiedLinkError: No implementation found for java.lang.String dalvik.system.DexFile.getOatFileCompilerFilter(java.lang.String, java.lang.String) (tried Java_dalvik_system_DexFile_getOatFileCompilerFilter and Java_dalvik_system_DexFile_getOatFileCompilerFilter__Ljava_lang_String_2Ljava_lang_String_2)
AndroidRuntime: at dalvik.system.DexFile.getOatFileCompilerFilter(Native Method)
AndroidRuntime: at com.android.server.pm.PackageDexOptimizer.getOatFileCompilerFilter(PackageDexOptimizer.java:167)
AndroidRuntime: at com.android.server.pm.PackageManagerService.getOatFileCompilerFilter(PackageManagerService.java:19879)
AndroidRuntime: at com.android.server.pm.BackgroundDexOptService$3.run(BackgroundDexOptService.java:373)
DownloadManager: Removed 0 stale downloads
MDM_DropBox: record:system_server_crash
OSTracker: OS Event: system_server_crash
Then this module is for you.
Install, activate, reboot and crashes be gone.
This module has no UI.
Technical explanation
For some reason OnePlus has patched the Background Dex Optimization service. I think it's related to the aggressive optimization OOS 4.5 pushes (it uses the "speed" compiler filter everywhere) and also implements some filtering of some apps (see the blacklist add lines in the backtrace).
Note that the Background Dex Optimizer as shipped by OOS will not obey the pm.dexopt.bg-dexopt property and will always use "speed" irrespective of the pm.dexopt.bg-dexopt setting. Gah...
In their patching, OnePlus made the com.android.server.pm.PackageDexOptimizer.getOatFileCompilerFilter() framework function call the dalvik.system.DexFile.getOatFileCompilerFilter() native function.
dalvik.system.DexFile.getOatFileCompilerFilter() is implemented in OOS by /system/lib64/libart.so.
And Xposed replaces /system/lib64/libart.so with its own version, which does not contain dalvik.system.DexFile.getOatFileCompilerFilter().
When the OOS phone is left charging and reaches 100% battery, a timer starts. 1h after reaching 100% battery, the Background Dex Optimization runs, and promptly crashes. Since this is in the Android system, the whole phone soft-reboots.
The module works by hooking com.android.server.pm.PackageDexOptimizer.getOatFileCompilerFilter() and having it return null instead of calling the native method dalvik.system.DexFile.getOatFileCompilerFilter(). That's what the native method returns anyways, so no functionality should be lost.
Device Status
Working and tested on:
OnePlus 5 running OOS 4.5.12, Magisk 14.2 and Xposed 88.0.
Changelog
Release 0.1 on October 11, 2017
Initial release.
Download
httphttp://dl-xda.xposed.info/modules/com.fifsource.android.oosbackgroupdexcompilationfix_v1_830eb4.apk (on Xposed Module Repository)
XDA:DevDB Information
OOS Background DEX Optimization Fix, Xposed for all devices (see above for details)
Contributors
Fif_
Xposed Package Name:
Version Information
Status: Beta
Current Beta Version: 0.1
Beta Release Date: 2016-10-11
Created 2017-10-12
Last Updated 2017-10-12

Attention beta testers:
Please let your device run on power overnight and send me the Xposed log file.
You should see many lines with the "OOSDEX" prefix.

Trying it now, thanks very much!

Does this effect mm at all or simply n?

I only found this problem on OOS 4.5.x, which is Nougat. The package won't install on anything but N or above. Did you experience a similar crash on a MM OOS ROM?

Thank you!!! Really hope this works! Noticed this when my alarm didn't go off 2 days ago.. Last night I woke up a few times and when i looked at my phone it asked asked my code. This happened 3 times , so at least 3 reboots while on charger.

My 3T (running OB 15) charged just fine without crashing last night.
I guess it's a good thing that I'm sticking with it for now. OxygenOS open beta roms are about as close to perfect as it gets when you add magisk, xposed, and substratum. I love custom roms as much as anyone else, but OOS is hands down the best stock ROM. Remaining close to AOSP gives it the versatility that other stock roms lack.

HampTheToker said:
My 3T (running OB 15) charged just fine without crashing last night.
I guess it's a good thing that I'm sticking with it for now. OxygenOS open beta roms are about as close to perfect as it gets when you add magisk, xposed, and substratum. I love custom roms as much as anyone else, but OOS is hands down the best stock ROM. Remaining close to AOSP gives it the versatility that other stock roms lack.
Click to expand...
Click to collapse
I'm happy to hear that your phone didn't crash overnight. Did you have the module enabled?
If so, can you share your Xposed log from that night? Right now the module has lots of logging, which I will pare down later, but I'd like to check everything is working fine.

@Fif_ does your module work on v88.1?
Sent from my ONEPLUS A5000 using Tapatalk

Haven't tried, waiting for the systemless update for 88.1.
Given that the module is very simple, if Xposed 88.1 works for you, the module should work. Please report back and share your Xposed log in any case. Thanks.

I added a technical explanation to the project description, in case anyone's interested in understanding what happens.
Still no reports of success of failures, with 219 downloads so far. It's working fine for everyone I guess, or I'd hear more complaints...

Hi Fif_,
Thanks for the fix. Have you reported this issue to rovo? Seems like an xposed framework bug to me. Shouldn't it be fix in the framework itself? But anyway good job!

Working great so far on my OnePlus 5, OOS 4.5.12, Magisk 14.2, and official Xposed 88.1. I also attached my xposed log for you since you requested some.
aeonix_05 said:
Hi Fif_,
Thanks for the fix. Have you reported this issue to rovo? Seems like an xposed framework bug to me. Shouldn't it be fix in the framework itself? But anyway good job!
Click to expand...
Click to collapse
I agree, this seems like something that in the end should be fixed within the framework itself.

Fif_ said:
I'm happy to hear that your phone didn't crash overnight. Did you have the module enabled?
If so, can you share your Xposed log from that night? Right now the module has lots of logging, which I will pare down later, but I'd like to check everything is working fine.
Click to expand...
Click to collapse
No, it wasn't installed. I'm on open beta, so I don't think this bug applies since my 3T didn't experience a crash as far as I can tell. I'll give my phone a couple more battery cycles and let you know if this bug affects us 3/3T open beta users.

BatedUrGonnaDie said:
Working great so far on my OnePlus 5, OOS 4.5.12, Magisk 14.2, and official Xposed 88.1. I also attached my xposed log for you since you requested some.
I agree, this seems like something that in the end should be fixed within the framework itself.
Click to expand...
Click to collapse
Thanks for the log. Everything happened as I expected on your phone.
I'm not sure if this is an Xposed framework issue. Have you read the technical explanation?
I see the situation this way: @rovo89 publishes the official Xposed framework based upon AOSP sources. Then third parties publish modified Xposed frameworks for specific ROMs. There's Wanam Xposed for Samsung phones. There another one for MIUI. There are surely others.
For us, OOS users, a simple mod using the framework itself is sufficient to make the official AOSP-based Xposed work on OOS. I think this is better than having a forked OOS-specific Xposed framework.

Fif_ said:
Thanks for the log. Everything happened as I expected on your phone.
I'm not sure if this is an Xposed framework issue. Have you read the technical explanation?
I see the situation this way: @rovo89 publishes the official Xposed framework based upon AOSP sources. Then third parties publish modified Xposed frameworks for specific ROMs. There's Wanam Xposed for Samsung phones. There another one for MIUI. There are surely others.
For us, OOS users, a simple mod using the framework itself is sufficient to make the official AOSP-based Xposed work on OOS. I think this is better than having a forked OOS-specific Xposed framework.
Click to expand...
Click to collapse
Hmm, you do make a good point, but with the current release rovo is working on samsung and miui compatibility (ex: v88.1). It seems like he is trying to make it as universal as possible instead of having a different version for each phone.

i have the same soft reboot issue. it happens only when the phone is on the charger for a longer time and in flight mode. i'll try your module. thanks!

Working great, no reboots all night. Time for a build without all the debug code in the logs

Working great! Thanks for the fix :good: Slow testing of course because of waiting for full charge and then next another hour of waiting for a crash. Which did not occur anymore, so it works! :good:

vincentkoevoets said:
Working great! Thanks for the fix :good: Slow testing of course because of waiting for full charge and then next another hour of waiting for a crash. Which did not occur anymore, so it works! :good:
Click to expand...
Click to collapse
Yeah it was a long debugging session...

Related

force closing with lollipop xposed

Installed xposed for stock rooted lollipop and fc.
There's a reason Xposed for Lollipop is still in Alpha release status. I would report the issue in the Xposed forum so that the developer is aware. He'll probably want log files to see what the problem is. Or just wait until a stable release is available.
I had the same problem what was the app?
Also i followed this guide and it worked on bliss pop maybe it will work on stock: http://www.phonearena.com/news/How-....0-Lollipop-and-actually-make-it-work_id66065
I think the main thing is to change from enforcing to passive

Xposed framework

Hey y'all as we all know xposed has hit lollipop after a long wait... Plus it WaS my (and probably many others reason ) for rooting the device ....
BT it seems not working on the moto G 2014 and other moto devices after flashing the zip and installing the apk it shows low storage space even tho there's much storage left...
But when I wiped dalvik cache that storage problem seems to b gone but the xposed app stillshows only 61 in the apk jar line and others are empty l....
It still shows installation can b done through recovery only etc.....
.
.
.
So if anyone has working xposed on there moto G 2014 can they plz post the steps or guide for installing it...
Plus some modules that'd be working with it (it'll be like a gold bonus)
..
Plz do reply
Sent from my XT1068/69 on titan rom using XDA Free mobile app
I'm pretty sure you've installed Xposed correctly now, the errors you're seeing are just simple UI problems, don't mind them. Here is a thread about the current compatible modules with Lollipop.
Try installing and using a module, it should work fine. I am currently using:
- Amplify
- APM+
- App Settings
- GEL Settings
- PlayStore Changelog
- Yourtube
- YouTube Adaway
- Youtube Background Playback
All of them are working as they should.
mpeL said:
I'm pretty sure you've installed Xposed correctly now, the errors you're seeing are just simple UI problems, don't mind them. Here is a thread about the current compatible modules with Lollipop.
Try installing and using a module, it should work fine. I am currently using:
- Amplify
- APM+
- App Settings
- GEL Settings
- PlayStore Changelog
- Yourtube
- YouTube Adaway
- Youtube Background Playback
All of them are working as they should.
Click to expand...
Click to collapse
how about marshmallow?
Works pretty good at Marshmallow (OS: Dirty Unicorns / DU_titan_6.0.1_20160725-2240.v10.4-DIRTY-DEEDS.zip).
I flashed "xposed-v85-sdk23-arm.zip" and installed "XposedInstaller_3.0_alpha4.apk"
Every module I installed works propper (coolify / Android n-ify / Greenify / usw USB for Marshmallow)

[MOD] [XPOSED] App Settings 1.11 fixed for working on Lollipop 5.1.1 + tweaks

Here is the famous @rovo89 and @Tungstwenty's App Settings Xposed module, fixed for perfectly working on Android Lollipop 5.1.1.
[UPDATE 18-08-2015]
Additionally add more resolution modes to fake screen resolution (Screen Dimension) to load hi-res resources destined to tablets, sending real tablet metrics, so it works, in example, with Spotify
Details in original thread: http://forum.xda-developers.com/xposed/modules/mod-app-settings-v1-9-2014-05-14-t2437377
Works on Android 2.3+.
WARNING: on Lollipop 5.1.1 use with Xposed framework v71-sdk22 by @romracer from this thread: http://forum.xda-developers.com/xposed/super-alpha-posted-permission-xposed-t3072979 and Xposed Installer 3.0 alpha 4 from the original thread: http://forum.xda-developers.com/showthread.php?t=3034811
I fixed it long time ago and uploaded to original thread.
Do you use my fixes?
If not, please upload your fixes and/or the whole app source code. Anybody can do harmful xposed module and do it as "a fix for, mod of" some famous xposed module like this one (AppSettings). Then it becomes really dangerous.
pyler said:
I fixed it long time ago and uploaded to original thread.
Do you use my fixes?
If not, please upload your fixes and/or the whole app source code. Anybody can do harmful xposed module and do it as "a fix for, mod of" some famous xposed module like this one (AppSettings). Then it becomes really dangerous.
Click to expand...
Click to collapse
Thread udated with the source code and more tweaks.
I installed it and it work for my camera and my phone apps. I would like it work with autodesk sketchbook pro, is it possible?
paldave said:
Here is the famous @rovo89 and @Tungstwenty's App Settings Xposed module, fixed for perfectly working on Android Lollipop 5.1.1.
[UPDATE 18-08-2015]
Additionally add more resolution modes to fake screen resolution (Screen Dimension) to load hi-res resources destined to tablets, sending real tablet metrics, so it works, in example, with Spotify
Details in original thread: http://forum.xda-developers.com/xposed/modules/mod-app-settings-v1-9-2014-05-14-t2437377
Works on Android 2.3+.
WARNING: on Lollipop 5.1.1 use with Xposed framework v71-sdk22 by @romracer from this thread: http://forum.xda-developers.com/xposed/super-alpha-posted-permission-xposed-t3072979 and Xposed Installer 3.0 alpha 4 from the original thread: http://forum.xda-developers.com/showthread.php?t=3034811
Click to expand...
Click to collapse
Make it compatible with marshmallow.
Thanks in advance!
It's available on official thread (with an unofficial build).
Inviato dal mio GT-I9505 utilizzando Tapatalk
Can work with hTC One M9 sprjnt stock rom

Xposed for P9000

Hello, has someone install the xposed Framework and get work? I install the xposed v81 sdk23 arm64 on twrp, everything works fine. On xposed Installer, is green and active. But when I start gravitybox it doesn't work.
I successfully flashed the framework, installed the Xposed app, and downloaded some modules on the latest ROM (20160419). None of the modules I've tried activate on reboot or work. I didn't expect modules like GravityBox to work since although the P9000 ROM is close to AOSP it actually has quite a few modifications. However, I was surprised that modules modifying apps such as Greenify or Amplify don't work, nor do relatively simple modules such as double tap to sleep. Hopefully we'll be able to use Xposed soon because the latest ROM update is another step closer to this phone realising its potential.
I think Elephone need to release source in order for full xposed compatibility to be realized ?
I am happy the rom with the phone has a bootmanager ability and together with Adaway + network speed app.. not missing xposed too badly at all!
Already tried to get the kernel source but they don't want to share it. See elephonemobile . eu/t/kernel-mt6755-kernel-source-files/27
new7 said:
Already tried to get the kernel source but they don't want to share it. See elephonemobile . eu/t/kernel-mt6755-kernel-source-files/27
Click to expand...
Click to collapse
Please join the joint action to pressure Elephone to release sources: elephonemobile . eu/t/joint-action-to-get-elephone-to-release-sources/96
Quoted here for convenience:
-----
Hi, I'm proposing a template e-mail to write to Elephone to request the release of sources necessary to further develop the phone and fix issues without having to wait for their internal developers to do so.
Please send an e-mail to [email protected] and [email protected], hopefully with enough pressure, they will eventually release some sources.
E-mail template:
Subject: Please release Elephone P9000 sources
Hello, I own a Elephone P9000 phone and I am having issues with the phone, but I would also like to customize it to my needs. There is people willing to work on improving this phone, which will also boost this device reviews and general acceptance. I strongly believe this phone's hardware is amazing, but there is a lot to improve on the software side.
To be able to do this, developers need the kernel source code (and any other source code that is part of the official ROM that you can provide). The release of these sources could determine the level of success of this phone, so I hope you consider releasing the sources soon.
Thank you.
I just sent my e-mail. Please send yours soon.
Click to expand...
Click to collapse
-----
greenphone6743 said:
I think Elephone need to release source in order for full xposed compatibility to be realized ?
I am happy the rom with the phone has a bootmanager ability and together with Adaway + network speed app.. not missing xposed too badly at all!
Click to expand...
Click to collapse
Xposed is needed for Xprivacy, with Xprivacy , you have full control over what apps may know and may not know.
for instance... Facebook thinks I'm living in Austria, and my phone number is 111111111111
many apps want to know you'r messages, mails, contacts etc.... with Xprivacy you can prevent that :good:
but... only works with Xposed
---------- Post added at 03:08 PM ---------- Previous post was at 03:04 PM ----------
I have installed framework : http://forum.xda-developers.com/showthread.php?t=3034811
also flashed with TWRP the framework to ARM64 version 86 http://dl-xda.xposed.info/framework/sdk23/arm64/
In Exposed framework it is green and says Xposed framework version 86 is active
Greenify and Xprivacy are recognized and selected, but when i want to use Xprivacy, it keeps complaining that it is not selected in XPosed...
Greenify, if i use features that only work with Xposed, it also says that it is not activated in Xposed. but it is...
Xposed is allowed by my SuperSU version 2.77
I don't want to use this phone before i get Xprivacy up and running ( i'm keen on PRIVACY )
but as i am reading here.. it has to do with Elephone ?
dinny said:
Xposed is needed for Xprivacy, with Xprivacy , you have full control over what apps may know and may not know.
for instance... Facebook thinks I'm living in Austria, and my phone number is 111111111111
many apps want to know you'r messages, mails, contacts etc.... with Xprivacy you can prevent that :good:
but... only works with Xposed
---------- Post added at 03:08 PM ---------- Previous post was at 03:04 PM ----------
I have installed framework : http://forum.xda-developers.com/showthread.php?t=3034811
also flashed with TWRP the framework to ARM64 version 86 http://dl-xda.xposed.info/framework/sdk23/arm64/
In Exposed framework it is green and says Xposed framework version 86 is active
Greenify and Xprivacy are recognized and selected, but when i want to use Xprivacy, it keeps complaining that it is not selected in XPosed...
Greenify, if i use features that only work with Xposed, it also says that it is not activated in Xposed. but it is...
Xposed is allowed by my SuperSU version 2.77
I don't want to use this phone before i get Xprivacy up and running ( i'm keen on PRIVACY )
but as i am reading here.. it has to do with Elephone ?
Click to expand...
Click to collapse
Flash GrorkMod.
Jonny said:
Flash GrorkMod.
Click to expand...
Click to collapse
thanks for the tip : http://forum.xda-developers.com/ele.../mod-grorkmod-eragon-aerom-v0-5-beta-t3395667
:good:
i use systemless root and xposed with magisk - works fine and love it - http://forum.xda-developers.com/xposed/unofficial-systemless-xposed-t3388268

[APP][Touchwiz 8.0+] Firefds Kit [Oreo]- Customization for Touchwiz O framework

Version for Marshmallow is available here: https://forum.xda-developers.com/xposed/modules/app-xtouchwizs5-customization-touchwiz-t3372401
Version for Nougat is available here: https://forum.xda-developers.com/xposed/modules/app-firefds-kit-customization-touchwiz-t3692391
This is the moded version of Wanam's XtouchWiz module. (http://forum.xda-developers.com/xposed/modules/app-xtouchwiz-customize-stock-samsung-t3296878)
It is moded to work with Oreo TouchWiz devices.
It is tested on the Galaxy S8 Exynos, but could also work on other Oreo models.
If this module works on your device please inform me so I can add it to the list.
This module only has features that GravityBox Oreo doesn't have. I've been fixing compatibility issues in GravityBox Oreo and @C3C076 has been merging them into the module.
Most of the features that were previously on the MM and N versions of Firefds Kit are now working on GravityBox Oreo.
For more info about GravityBox Oreo: https://forum.xda-developers.com/xposed/modules/app-gravitybox-v8-0-0-beta-1-tweak-box-t3739929
Known working devices:
Galaxy S8 Exynos
Features:
- Advanced Power Menu
- Carrier Label options in status bar
- Fake System status
- Disable TIMA/KAP
- Call Recording
- Auto call recording
- Bypass Email Exchange restrictions
- Disable tether provisioning
- DVFS Disable option
- Disable battery level/temp checks while using Camera
- Disable Adb during secured lockscreen
- Enable Message save and restore from sdcard
- Show Wireless charging popup
- Hide NFC icon
- Disable Bluetooth toggle popup
- Disable volume control sound
- Disable low battery sound
- Screen timeout settings
- And few other features
Download:
http://repo.xposed.info/module/sb.firefds.oreo.firefdskit
Source:
https://github.com/Firefds/FirefdsKit/tree/oreo
Thanks:
@rovo89 for his awesome work on Xposed framework and Mods.
@wanam for his Xposed touchwiz framework and his original module.
@C3C076 for his GravityBox module.
Don't forget to hit the Thanks button!!
Reserved
Hi, can you add option to hide Brightness slider? Gravitybox Oreo is not working for that :/ (Galaxy S8)
Hi dev, is there a chance to include Pie navigation on this module? I know Gravitybox has it , but it's not working on Samsung core apps like Messages, Phone, Clock, etc.
It works on 3rd party apps only.
Or perhaps, we can ask Gravitybox dev to have full Pie compatibility with Samsung devices.
TIA
Hi, can you add option to modify margin between qs icons?
I know it has been done in nougat custom ROMs ... Thanks
Tested on Note 8 Oreo (Infinity ROM DX3.1) with Iron Kernel latest. Everything is working fine. Thank you! GJ!
Sent from my SM-N950F using Tapatalk
"- Disable battery level/temp checks while using Camera" doesn't work with Snapdragon Galaxy S7 Oreo 8.0 on Verizon firmware. I don't know if it is because i don't have root (it's impossible to root Oreo for this moment on USA S7, but i can install xposed through SafeStrap recovery without any problem). This feature worked well on 7.0 Nougat with Firefds even without root, but now my camera shuts down after 10-15 minutes of recording video (the temperature goes to 46° Celsius and camera turns off).
Can you please fix this feature to make it work through xposed even without root, like it was on Nougat? I Really need this option very much
Greetings,
Any tips on getting "Bypass Email Exchange restrictions" to work with current Gmail version? Or does it apply only to Outlook app?
I tried on latest 8.0 rom (RICE, actually) and latest GMAIL app, but the app keeps asking to activate device admin. If I press "cancel", the account is added, but no data is synched..
Thanks!
Phk
Hi @firefds
Are you still active on this?
You helped a lot in the past to get Samsung related issues fixed on GravityBox
Have you taken a look at: Statusbar Tweaks -> Notification drawer style -> Expend all notifications ?
It crashed System UI on Oreo with Samsung devices (s7/s8)
It maybe doesn’t crash immediately, but after some time.
Or after a reboot... which makes it a hassle to unlock.
I can see it mentioned a few times on the Gravity-forum:
https://forum.xda-developers.com/search/thread/3739929?query=expand notification
I really mis this feature. Maybe you can fix it or add a working version on Firefds Kit.
Hope you can work your magic.
Thanks!
Hi @firefds
a possible bug related to the version “0.1.0.0-beta-1”
It is highly possible that this 0.1.0.0-beta-1 version will cause a Samsung N9500 (CHN/HK Dual-SIM version) lost sim cards recognition after phone reboot.
This sim cards failure can not be fixed by removing Firefds Kit [O], or remove xposed completely, or remove magisk completely, or dual wipe, or reboot, or switch flight mode on and off ... the only way I can found is just re-flash the whole ROM.
Here is short path how to reproduce this annoying problem:
• Flush ROM, install magisk and magisk xposed OR install original xposed
• Install Firefds Kit [O] 0.1.0.0-beta-1 by xposed manager, select it, reboot.
• Run Firefds Kit [O] 0.1.0.0-beta-1, allow its root request.
• Reboot phone
Then the simcard cannot be recognized anymore (show "no simcard" in phone settings), unless re-flash whole ROM.
(if the first reboot you still have sim card by chance, a 2nd reboot or clean ART in recovery will surely cause this no simcard issue)
Spent a lot of time to pin down this issue due to re flash, remove, reboot, but still not sure it is 100% percent this is a Firefds Kit [O] 0.1.0.0-beta-1 problem due to no clear diagnostic logs , for your consideration.
tested in N9500ZCU3CRF2/N9500ZCU4CRG2, several different sources of custom made ROM allow to install magisk/xposed .
@firefds
dvfs doesn't work on the Galaxy S8 Exynos with oreo
Works on s6, s6 edge, and note 5 without any reboots. Still curious if Faking Knox System does anything?
For the Galaxy S8 users and above who have upgraded to Pie - A new modal supporting Pie has been released: https://forum.xda-developers.com/xposed/modules/xposed-firefds-kit-customization-t3908114
---- Mar 8, 2019 18:18:34 ----
03-07 14:46:20.693 3580 3580 E AndroidRuntime: at sb.firefds.oreo.firefdskit.XGlobalActions$RebootAction.doReboot(XGlobalActions.java:271)
03-07 14:46:20.693 3580 3580 E AndroidRuntime: at sb.firefds.oreo.firefdskit.XGlobalActions$RebootAction.access$1(XGlobalActions.java:268)
03-07 14:46:20.693 3580 3580 E AndroidRuntime: at sb.firefds.oreo.firefdskit.XGlobalActions$RebootAction$3.onClick(XGlobalActions.java:302)
---------- Post added at 04:20 PM ---------- Previous post was at 04:20 PM ----------
I get UI crash when I press restart
Samsung Galaxy A5 2017
Works on Samsung Galaxy J4+
Have someone tried this on the Galaxy j4? The SM-J400M one?
---------- Post added at 08:44 AM ---------- Previous post was at 08:43 AM ----------
svendsvin said:
Works on Samsung Galaxy J4+
Click to expand...
Click to collapse
Can you add screenshot?
When i install it on my a7 2017 the hotspot toggle disappeared and i dont know how to get it back any help ?
Works on S9+ SM-G9650 however occasionally temporary bootloop can happen on restart/reboot workaround for the moment force power off and power back on. Boot up time seems slightly longer as well..
Sent from my SM-G9650 using Tapatalk
Unfortunately, neither this module nor gravitybox for oreo worked for disabling safe volume popup when using headphones ..
unable to download

Categories

Resources