[REQUEST] Sony Framework for Magisk 19.1 - Magisk

the module Sony Framework has not been updated for magisk 19.1 and therefore has been removed by magisk manager, someone can update it and run it on magisk 19.1, I want to use PS4 Remote Play!
Thanks!

albysprx said:
the module Sony Framework has not been updated for magisk 19.1 and therefore has been removed by magisk manager, someone can update it and run it on magisk 19.1, I want to use PS4 Remote Play!
Thanks!
Click to expand...
Click to collapse
Same for me

I third this request. Help someone ?

Search here for "remote enabler" then look for the first 4-6 pages,there must be a working link for the necessery files

atakan1986 said:
Search here for "remote enabler" then look for the first 4-6 pages,there must be a working link for the necessery files
Click to expand...
Click to collapse
Dont work cant be flashed because cant mount /system

Try this module.
https://forum.xda-developers.com/showpost.php?p=79463199&postcount=109

fnldstntn said:
Try this module.
https://forum.xda-developers.com/showpost.php?p=79463199&postcount=109
Click to expand...
Click to collapse
Doesn't work

Sony framework v1 in magisk repo work for me.

zerlkung said:
Sony framework v1 in magisk repo work for me.
Click to expand...
Click to collapse
Of course it works, that's the module that's being discussed. Issue is that it was never updated to the new template and has now been removed from the repo.
For anyone wanting to get a hold of the files it can currently be found in the Modules grave: https://github.com/Magisk-Modules-Grave/SonyFramework

Didgeridoohan said:
Of course it works, that's the module that's being discussed. Issue is that it was never updated to the new template and has now been removed from the repo.
For anyone wanting to get a hold of the files it can currently be found in the Modules grave: https://github.com/Magisk-Modules-Grave/SonyFramework
Click to expand...
Click to collapse
Link down.

Gabaldia said:
Link down.
Click to expand...
Click to collapse
Yes. The repo grave has been cleared. Anyone wanting to keep working on this will need to find the files somewhere else.

I found this repo in github "corejarpatch/SonyFramework" (I can't post links yet) but when I try to install it, it says "Magisk is not activated".
Hope that someone can make it work

pedriterman said:
I found this repo in github "corejarpatch/SonyFramework" (I can't post links yet) but when I try to install it, it says "Magisk is not activated".
Hope that someone can make it work
Click to expand...
Click to collapse
I made it work. I will upload the module to github as soon as I can. It has some extras now.

pedriterman said:
I made it work. I will upload the module to github as soon as I can. It has some extras now.
Click to expand...
Click to collapse
Did you put the code in a new Magisk module template?

pedriterman said:
I made it work. I will upload the module to github as soon as I can. It has some extras now.
Click to expand...
Click to collapse
Any news on that?

pedriterman/Sony-Framework-Remaster on github. Can't post links
There you go guys. Hope that I uploaded it right.

Thx but...
Flashing via Magisk v19.1/v7.1.2 :
! This zip is not a Magisk Modul!
Flashing via TWRP 3.2.3.1:
"Invalid zip file format!"

lamahh said:
Thx but...
Flashing via Magisk v19.1/v7.1.2 :
! This zip is not a Magisk Modul!
Flashing via TWRP 3.2.3.1:
"Invalid zip file format!"
Click to expand...
Click to collapse
It works as expected.
However, you have to open the .zip and modify it slightly.
I attached a working, flashable version for 19.1 by @pedriterman. Here is a link as well.
Thank you @pedriterman !

lamahh said:
Thx but...
Flashing via Magisk v19.1/v7.1.2 :
! This zip is not a Magisk Modul!
Flashing via TWRP 3.2.3.1:
"Invalid zip file format!"
Click to expand...
Click to collapse
Your error told me exactly what the problem was - an extra folder was nested inside before the files. Had to repackage the zip. Just finished booting after installing the module. Looks like someone else posted a working version.

MonteXMat said:
It works as expected.
However, you have to open the .zip and modify it slightly.
I attached a working, flashable version for 19.1 by @pedriterman. Here is a link as well.
Thank you @pedriterman !
Click to expand...
Click to collapse
Forgot to tell that you have to unzip, take the content from the folder and zip again

Related

[UNOFFICIAL][2016-Nov-02]Xposed build that passes SafetyNet while enabled and active

UPDATE: Not even 24 hours and it fails SafetyNet now. I'm currently working on another solution.
Hi all. Long time lurker, first time developer. I created a modified version of the Xposed Framework that doesn't cause you to fail SafetyNet, even while it's enabled and active. Instructions:
Remove any existing Xposed versions
Get your phone in a state where it passes SafetyNet without Xposed (install a custom kernel to hide an unlocked bootloader, hide root with RootSwitch, etc.)
Install the Xposed Installer app if you don't already have it
Go to https://github.com/josephcsible/Xposed/releases/tag/v86a and download xposed-v86a-safetynet-josephcsible-sdk23-arm.zip
Flash xposed-v86a-safetynet-josephcsible-sdk23-arm.zip from recovery
Wipe cache and dalvik
Reboot
You should now have Xposed installed and enabled, with all of your modules working, without failing SafetyNet. Notes:
Do not turn off Xposed with RootSwitch with this build. It will probably break things because of differences in how app_process sits, and the entire point of this build is that you don't need to do this.
The only build I made was for ARM and Marshmallow, because that's all I have to test on
The official uninstaller won't work right with this version, so use my version of the uninstaller instead
This passes SafetyNet as of November 2nd. It probably won't for very long.
Technical details:
I made this build by compiling my own app_process, then editing it into the stock installer zip. I didn't recompile anything else or use the tools to make the zip.
app_process32 is now a regular file instead of a symlink to app_process32_xposed.
XposedBridge.jar is now called YqptfeBridge.jar (since SafetyNet checks the classpath for a file called XposedBridge.jar)
I obfuscated many of the strings in the app_process binary with a simple Caesar cipher. The source for this is in the GitHub with the download link.
Enjoy it while it lasts!
Great work, thanks! Though I think the method is kind of dirty.
Yeah, but I'm not overly concerned since I expect at best a few weeks before it gets patched and I have to redo it all anyway.
aviraxp said:
Great work, thanks! Though I think the method is kind of dirty.
Click to expand...
Click to collapse
You mean that it's not good to install it ?
MrMikeTyson said:
You mean that it's not good to install it ?
Click to expand...
Click to collapse
He means in terms of code quality and maintainability from developers' standpoints. It's perfectly fine from the users' ends.
josephcsible said:
He means in terms of code quality and maintainability from developers' standpoints. It's perfectly fine from the users' ends.
Click to expand...
Click to collapse
Ah ! Okay !! What about safetynet not passing ? See screenshots... What can i do please ?
MrMikeTyson said:
Ah ! Okay !! What about safetynet not passing ? See screenshots... What can i do please ?
Click to expand...
Click to collapse
It no longer passes for me either. I can't believe Google fixed it so fast. I'm working on another release now.
josephcsible said:
It no longer passes for me either. I can't believe Google fixed it so fast. I'm working on another release now.
Click to expand...
Click to collapse
Okay, i'll wait it and good luck for your work
Status update: My app_process is still not detected at all. It's now detecting something that's happening in Java (XposedBridge).
josephcsible said:
Status update: My app_process is still not detected at all. It's now detecting something that's happening in Java (XposedBridge).
Click to expand...
Click to collapse
So it means you cannot just rename the method/class, if I am right?
aviraxp said:
So it means you cannot just rename the method/class, if I am right?
Click to expand...
Click to collapse
I tried stubbing out the main method in XposedBridge to just call the real main method, and that made it pass. That leads me to conclude that it's a behavior thing and not a name thing.
So this version of xposed is passing?
Barfelonous said:
So this version of xposed is passing?
Click to expand...
Click to collapse
REREAD THE OP Please
josephcsible said:
UPDATE: Not even 24 hours and it fails SafetyNet now. I'm currently working on another solution.
Click to expand...
Click to collapse
: (
Any news on this?
meiser said:
Any news on this?
Click to expand...
Click to collapse
I haven't had time to work on it since my last update. I expect to have more time in June.
Hi is there an other way to use Xposed modules while passing safatynet check ? Its usefull on POGO !
Regards, Devilo !

Viper4Android + Magisk on Nougat

Hi,
Have been using Viper4Android on MM a lot. Now that I have upgraded to Nougat (Open Beta 2), all I get is a valid installation but for some reason it does not process my audio. Please see screenshot.
dreinulldrei said:
Hi,
Have been using Viper4Android on MM a lot. Now that I have upgraded to Nougat (Open Beta 2), all I get is a valid installation but for some reason it does not process my audio. Please see screenshot.
Click to expand...
Click to collapse
Uninstall the viper apk..And flash viper4arise zip on twrp..
Thanks, but I am looking for a systemless install.
This has been working and others report it's working (on other devices though).
I wonder if anyone has tried it on a 3T with Nougat.
So is it possible to get it working systemless? Thanks!
You can use viper4rarise with magisk. Safetynet not triggered. But the problem is selinux status. Its always enforcing for some reason. But yi can change it from terminals using setenforce 0 command. Then it works. You need to do it every time after reboot. I tried to make selinux permissive. Bug it triggers safetynet. So im swt with running everytime post reboot
dreinulldrei said:
Hi,
Have been using Viper4Android on MM a lot. Now that I have upgraded to Nougat (Open Beta 2), all I get is a valid installation but for some reason it does not process my audio. Please see screenshot.
Click to expand...
Click to collapse
dreinulldrei said:
Thanks, but I am looking for a systemless install.
This has been working and others report it's working (on other devices though).
I wonder if anyone has tried it on a 3T with Nougat.
Click to expand...
Click to collapse
Systemless user here. If you're interested, I've created a Magisk module of ViPER4Android 2.3.4.0, which in my opinion is the best version as it had drivers of different quality you could choose. My Magisk module runs on Super High Quality.
And yes, I'm running it on Nougat/OOS 4.0.2. If you want it on Open Beta, send me the following files:
/system/etc/audio_effects.conf
/system/etc/audio_policy.conf
/system/vendor/etc/audio_effects.conf
Click to expand...
Click to collapse
And I'll make it for you.
Spasticdroid said:
Systemless user here. If you're interested, I've created a Magisk module of ViPER4Android 2.3.4.0, which in my opinion is the best version as it had drivers of different quality you could choose. My Magisk module runs on Super High Quality.
And yes, I'm running it on Nougat/OOS 4.0.2. If you want it on Open Beta, send me the following files:
And I'll make it for you.
Click to expand...
Click to collapse
Where can I download your module? Thanks!
Spasticdroid said:
Systemless user here. If you're interested, I've created a Magisk module of ViPER4Android 2.3.4.0, which in my opinion is the best version as it had drivers of different quality you could choose. My Magisk module runs on Super High Quality.
And yes, I'm running it on Nougat/OOS 4.0.2. If you want it on Open Beta, send me the following files:
And I'll make it for you.
Click to expand...
Click to collapse
Thanks! Much appreciated. Config attached.
cha0zine said:
Where can I download your module? Thanks!
Click to expand...
Click to collapse
Attached to this post.
dreinulldrei said:
Thanks! Much appreciated. Config attached.
Click to expand...
Click to collapse
Not a problem. Let me know how it goes.
I installed your module. How do I know if it's working properly? I tried changing settings while using google play music but didn't hear any changes. Driver status is enabled but processing shows "no".
Edit: tried listening a podcast and viperfx seems to be working. I can hear changes in sound. How can I get google play music also working?
cha0zine said:
I installed your module. How do I know if it's working properly? I tried changing settings while using google play music but didn't hear any changes. Driver status is enabled but processing shows "no".
Edit: tried listening a podcast and viperfx seems to be working. I can hear changes in sound. How can I get google play music also working?
Click to expand...
Click to collapse
I forgot about that. At the moment I cannot get streaming via Play Music working with ViPER's FX Compatible Mode set as normal. Only locally stored music played in Play Music will make ViPER work with it.
However, setting ViPER's FX Compatible Mode to Compatible will make it work with both local and streaming music in Google Play Music, along with other audio apps.
Hopefully that makes sense.
dreinulldrei said:
Hi,
Have been using Viper4Android on MM a lot. Now that I have upgraded to Nougat (Open Beta 2), all I get is a valid installation but for some reason it does not process my audio. Please see screenshot.
Click to expand...
Click to collapse
I had this issue too, I had to go into system/etc/audio_policy.conf and # out deep_buffer
Spasticdroid said:
Systemless user here. If you're interested, I've created a Magisk module of ViPER4Android 2.3.4.0, which in my opinion is the best version as it had drivers of different quality you could choose. My Magisk module runs on Super High Quality.
And yes, I'm running it on Nougat/OOS 4.0.2. If you want it on Open Beta, send me the following files:
And I'll make it for you.
Click to expand...
Click to collapse
Viper works here for everything but Google play music. The files you're modifying don't include the XML files, from experience in Nougat just modifying the conf files didn't make any difference, but I may be wrong (Certainly sounds so). What changes did you make may I ask? Removing deep buffer and raw only makes any difference for me if I modify the XML files in Nougat.
damiensturdy said:
Viper works here for everything but Google play music. The files you're modifying don't include the XML files, from experience in Nougat just modifying the conf files didn't make any difference, but I may be wrong (Certainly sounds so). What changes did you make may I ask? Removing deep buffer and raw only makes any difference for me if I modify the XML files in Nougat.
Click to expand...
Click to collapse
Check out my post here in the LG V20 thread for what I did. It's the exact same process, minus making backups and moving scripts to /su.d.
EDIT: I'm an idiot. I forgot the link. Time for bed. Here it is: https://forum.xda-developers.com/showpost.php?p=70797723&postcount=530
Spasticdroid said:
Systemless user here. If you're interested, I've created a Magisk module of ViPER4Android 2.3.4.0, which in my opinion is the best version as it had drivers of different quality you could choose. My Magisk module runs on Super High Quality.
And yes, I'm running it on Nougat/OOS 4.0.2. If you want it on Open Beta, send me the following files:
And I'll make it for you.
Click to expand...
Click to collapse
Spasticdroid said:
Check out my post here in the LG V20 thread for what I did. It's the exact same process, minus making backups and moving scripts to /su.d.
Click to expand...
Click to collapse
It appears we are on the same page. Just noticed your post above about Google play music. Gah. I'm going to keep fiddling
@Spasticdroid: Magisk 11.0 breaks this module...
dreinulldrei said:
@Spasticdroid: Magisk 11.0 breaks this module...
Click to expand...
Click to collapse
Fixed!
Attachments below are for Magisk v11.0+ only!
Spasticdroid said:
Fixed!
Attachments below are for Magisk v11.0+ only!
Click to expand...
Click to collapse
How could i install this? with magisk flash, or twrp flash?
And how can i uninstall it again?
Regionella said:
How could i install this? with magisk flash, or twrp flash?
And how can i uninstall it again?
Click to expand...
Click to collapse
install the magisk app in the play store and use it to install magisk. Install the above zip in magisk. Uninstall with magisk if needed.

[Module][Magisk] [Google Phone Contacts Messages Installer] [Systemless]

This magisk module Google Phone Contacts Messages Installer systemlessly, rrplaces stock (AOSP) phone, contacts & messaging apps. Compatible with Magisk v14
When you don't like stock/AOSP phone, contacts & messages apps; when you don't like to use aroma opengapps installer; when you don't like to install google phone, contacts & messages apps as secondary user apps... this module is for you!
How to..
Install using Magisk manager 5.3 & up
Or
Install using TWRP recovery
Download link: (module file is in following folders)..
Arm32: https://www.androidfilehost.com/?w=files&flid=224024
Arm64: https://www.androidfilehost.com/?w=files&flid=223700
(Arm32 module should work now, arm64 works nice!)
(Not working with oreo devices for now)
Note: 1. Apps are taken from Apkmirror and apps are unmodified
Note: 2. Select default phone app as phone (in system settings/apps/settings/default apps settings) otherwise caller ID won't be visible
Enjoy!
Changelogs:
v3.0
Arm64 & Arm32 both variants are updated with nodpi apps. Arm32 variant should work now.
v2.2.1
Fixed weird issues with magisk manager v5.4
v2.2
Fixed wrong module version
Updated to latest magisk template
v2.1
Initial build
v2.2
Changelogs: Fixed wrong version code.
Download link:
https://www.androidfilehost.com/?fid=962021903579485394
Request.
A kind request for ARM version also , If it's possible. :fingers-crossed:
Best Regards. :good:
Dark❶ said:
A kind request for ARM version also , If it's possible. :fingers-crossed:
Best Regards. :good:
Click to expand...
Click to collapse
I'll make it today. Only issue is i can't test arm32 version as I don't have arm32 device. Though I'll upload test version here today. Test it if you can.
Dark❶ said:
A kind request for ARM version also , If it's possible. :fingers-crossed:
Best Regards. :good:
Click to expand...
Click to collapse
Ok... Here the test file... for arm32 devices..
https://www.androidfilehost.com/?fid=745849072291681637
Test it & tell.
dr.bathman said:
I'll make it today. Only issue is i can't test arm32 version as I don't have arm32 device. Though I'll upload test version here today. Test it if you can.
Click to expand...
Click to collapse
dr.bathman said:
Ok... Here the test file... for arm32 devices..
https://www.androidfilehost.com/?fid=745849072291681637
Test it & tell.
Click to expand...
Click to collapse
Thank you very much. :good::good::good:
I'll Test it , and report.
best Regards.
dr.bathman said:
v2.3
Changelogs: Fixed wrong version code.
Download link:
https://www.androidfilehost.com/?fid=962021903579485394
Click to expand...
Click to collapse
Installed v2.3 over v2.2, but in magisk manager appears v.2.2
Arm64
---------- Post added at 10:07 PM ---------- Previous post was at 09:50 PM ----------
jordirpz said:
Installed v2.3 over v2.2, but in magisk manager appears v.2.2
Arm64
Click to expand...
Click to collapse
Unistalled v2.2, and installed v2.3.
v2.2 appears in magisk manager
Arm64
I have magisk anager 5.4(57) and magisk 14 but I don't have this module listed (already deleted cach deposit) searched all the keywords but nothing
also if I get it working do we have to flash a new version everytime the dialer or contact app are updated or just installing new apps versions from apkmirror ?
sheraro said:
I have magisk anager 5.4(57) and magisk 14 but I don't have this module listed (already deleted cach deposit) searched all the keywords but nothing
also if I get it working do we have to flash a new version everytime the dialer or contact app are updated or just installing new apps versions from apkmirror ?
Click to expand...
Click to collapse
Listed where? And this is not in official magisk module repo. You need to flash it manually after downloading from here.
jordirpz said:
Installed v2.3 over v2.2, but in magisk manager appears v.2.2
Arm64
---------- Post added at 10:07 PM ---------- Previous post was at 09:50 PM ----------
Unistalled v2.2, and installed v2.3.
v2.2 appears in magisk manager
Arm64
Click to expand...
Click to collapse
Ok.. thanks for report, renamed it to v2.2
Actually there was only a writo changed in v2.3 so i reverted name v2.2 for v2.3
dr.bathman said:
Ok... Here the test file... for arm32 devices..
https://www.androidfilehost.com/?fid=745849072291681637
Test it & tell.
Click to expand...
Click to collapse
Well !!! Here the report.
1. It installed very well in TWRP.
2. Booting to "System" made a massive Optimization of 133 app's , coz of "com.google.android.dialer.support.jar" file , No Problem. :fingers-crossed:
3. Contacts app Installed and Working very well. :good:
4. Phone[Dialer] app Installed and not working , It's force closing for every start.
5. Message app on other hand it did not install and installing manually from your zip file also fail's saying "App not Installed" error.
I have fixed it back by disabling the module.
Best Regards.
Dark❶ said:
Well !!! Here the report.
1. It installed very well in TWRP.
2. Booting to "System" made a massive Optimization of 133 app's , coz of "com.google.android.dialer.support.jar" file , No Problem. :fingers-crossed:
3. Contacts app Installed and Working very well. :good:
4. Phone[Dialer] app Installed and not working , It's force closing for every start.
5. Message app on other hand it did not install and installing manually from your zip file also fail's saying "App not Installed" error.
I have fixed it back by disabling the module.
Best Regards.
Click to expand...
Click to collapse
Phone & messaging apps are not working for you because of wrong apps for your phone. Provide me phone maximum resolution, android version you're using.
Dark❶ said:
Well !!! Here the report.
1. It installed very well in TWRP.
2. Booting to "System" made a massive Optimization of 133 app's , coz of "com.google.android.dialer.support.jar" file , No Problem. :fingers-crossed:
3. Contacts app Installed and Working very well. :good:
4. Phone[Dialer] app Installed and not working , It's force closing for every start.
5. Message app on other hand it did not install and installing manually from your zip file also fail's saying "App not Installed" error.
I have fixed it back by disabling the module.
Best Regards.
Click to expand...
Click to collapse
Thanks for testing
Try this new one..
https://www.androidfilehost.com/?fid=962021903579485675
dr.bathman said:
Listed where? And this is not in official magisk module repo. You need to flash it manually after downloading from here.
Click to expand...
Click to collapse
flashed v2.3 with magisk manager but the result -> all modules got deleted and couldn't install them again (instalation of a module goes well but that module isn't listed as installed even after reboot/delete magisk's cach/delete magisk's data), I solved the issu by uninstalling completly magisk and reinstalling it again. Didn't try to flash through recovery though (too afraid to reinstall all my modules again !)
sheraro said:
flashed v2.3 with magisk manager but the result -> all modules got deleted and couldn't install them again (instalation of a module goes well but that module isn't listed as installed even after reboot/delete magisk's cach/delete magisk's data), I solved the issu by uninstalling completly magisk and reinstalling it again. Didn't try to flash through recovery though (too afraid to reinstall all my modules again !)
Click to expand...
Click to collapse
Flash the module directly from twrp, this won't happen, this happens randomly with new magisk manager 5.4
dr.bathman said:
Thanks for testing
Try this new one..
https://www.androidfilehost.com/?fid=962021903579485675
Click to expand...
Click to collapse
Thanks , I'll try this One. :good:
BTW,
My Phone Andy Ver : Android 6.0 (Marshmallow, API 23) :angel:
I'll get my Max Resolution with DPI soon...
EDIT: Screen Resolution : 720x1280 pix's & Density : 320 DPI.
Best Regards. :good:
dr.bathman said:
Flash the module directly from twrp, this won't happen, this happens randomly with new magisk manager 5.4
Click to expand...
Click to collapse
it did work thanks
For updates, the apps can be updated through playstore ? apkmirror ? or updated zip ?
sheraro said:
it did work thanks
For updates, the apps can be updated through playstore ? apkmirror ? or updated zip ?
Click to expand...
Click to collapse
Yes, can be updated.
Delete that module &
Try this new one, install from magisk manager & tell me similar issue happens or not..
https://www.androidfilehost.com/?fid=889964283620759066
(If similar issue happens, just go to twrp & flash module & all your modules will be back + this module will also appear)
dr.bathman said:
Yes, can be updated.
Delete that module &
Try this new one, install from magisk manager & tell me similar issue happens or not..
https://www.androidfilehost.com/?fid=889964283620759066
(If similar issue happens, just go to twrp & flash module & all your modules will be back + this module will also appear)
Click to expand...
Click to collapse
ok it worked great through magisk manager with the latest 2.2.1 version, no modules disapearing bug

Edxposed Snapchat Bypass

So anyone else using this? https://github.com/Juxstin/EdXposed-SnapChat-Bypass
It doesnt trip safetynet and its working its just that sometimes the notifications dont work.. I was just think we could make a compilation thread with our phones and systems and see if there is any commonalities.. I really do not know about debugging and all that stuff but if anyone wants to teach me Im all ears!
My System
Model: Samsung Galaxy S5 (SM-G900W8)
OS: lineage_klte-userdebug 9 PQ3A 190801.022 33b92074c4 (LineageOS 16)
Magisk v20.3 Magisk Manager 7.5.1
magisk-EdXposed-SandHook-v0.4.6.4_beta.Justins.Fork.No.Custom.Magisk.zip
Also I saw that there are versions named "SePolicy" I dont know what they do but maybe I will try it out and see what happens
Do you still have the files? The Github page is down so I can't download it.
TomW1 said:
Do you still have the files? The Github page is down so I can't download it.
Click to expand...
Click to collapse
Yeah I noticed. They probably shut him down for promoting freedom.. I think I have some of the files I'll put them in my next post
This was all I had unfortunately.. I still have it installed on my phone but Im guessing extracting the apk would be no good.. If there is a way to make a magisk module into a zip I could do that but I would need some help with that one
Is there something we the people can do about Github censoring? This is not the first time Github has done companies bidding even tho they claim to be a "free" site..
You can pull the modules from /data/adb/modules
Eklondh said:
This was all I had unfortunately.. I still have it installed on my phone but Im guessing extracting the apk would be no good.. If there is a way to make a magisk module into a zip I could do that but I would need some help with that one
Click to expand...
Click to collapse
I found a different github with Justin's bypass. It looks like a reupload. github(DOT)com/Creamium/EdXposed-SnapChat-Bypass
LaterDated said:
I found a different github with Justin's bypass. It looks like a reupload. github(DOT)com/Creamium/EdXposed-SnapChat-Bypass
Click to expand...
Click to collapse
Can you guarantee that this bypass works?
Someone on reddit uploaded it here it is: http://www.mediafire.com/file/0uwqd1v1eua97ot/Snap_Bypass.zip/file

Question No modules showing under Magisk?

Hi guys
I have installed twrp and magisk 24.1 i believe on my Mi 11 Ultra but under modules nothing shows?? i managed to download yt vanced that installed okay but when i try to install busy box and debloater they both fail to do so?
How do i get around this please?
EDIT: Opps i think i might of posted under wrong section, can mods move this to Mi 11 ultra section pls. Thx
Regards
AliasFaux said:
Hi guys
I have installed twrp and magisk 24.1 i believe on my Mi 11 Ultra but under modules nothing shows?? i managed to download yt vanced that installed okay but when i try to install busy box and debloater they both fail to do so?
How do i get around this please?
EDIT: Opps i think i might of posted under wrong section, can mods move this to Mi 11 ultra section pls. Thx
Regards
Click to expand...
Click to collapse
This isn't phone specific. It's just the way magisk works now. The magisk github change log explains why
Zinnz said:
This isn't phone specific. It's just the way magisk works now. The magisk github change log explains why
Click to expand...
Click to collapse
Hi
Thankyou for getting back, after researching further i found out the above and regarding installing them manually i also learnt that as they come in folders zipped up they need to be extracted and rezipped in .zip format..all seems to working at the moment, have magisk twrp and safety net passed.
Regards
AliasFaux said:
Hi
Thankyou for getting back, after researching further i found out the above and regarding installing them manually i also learnt that as they come in folders zipped up they need to be extracted and rezipped in .zip format..all seems to working at the moment, have magisk twrp and safety net passed.
Regards
Click to expand...
Click to collapse
Find Fox's Magisk Module Manager.
They are all there.
ptr21 said:
Find Fox's Magisk Module Manager.
They are all there.
Click to expand...
Click to collapse
OMG thank you so much.
Regards

Categories

Resources