compiled all variants of WSA + PlayMarket and magisk.
Installation: unzip the archive and run install.ps
This is just MagiskOnWSA, it's best if you just fork it yourself and build it with workflows with your own custom settings instead of downloading from this guy's repo
Dkpost3 said:
compiled all variants of WSA + PlayMarket and magisk.
Click to expand...
Click to collapse
Link is invalid
Related
Here is the gingerbread back-porting for Xposed App Settings, which can be found at http://forum.xda-developers.com/xposed/modules/-t2437377.
This should works on ics+, but please install the original Xposed App Settings if you can.
Installation:
Xposed Installer GB, which can be found here: forum.xda-developers.com/xposed/-t2739034
Source: https://github.com/liudongmiao/XposedAppSettings
@Tungstwenty, would you support gingerbread and merge this?
@liudongmiao with the latest busybox installed,xposed installer cant mount my system & directly write the files.
killoid said:
@liudongmiao with the latest busybox installed,xposed installer cant mount my system & directly write the files.
Click to expand...
Click to collapse
Please use the corrent thread...Anyway, I have update the xposed installer, it should fix your problem.
Help me please. I want to make settings.apk like tablets.
DPI = ...
Font Scale = ...
Screen = ... ?
Thanks before
CorePatch
For android R only
A Module For Xposed Framework
Disable signature verification For Android
Features:
allow downgrade application [INSTALL_FAILED_VERSION_DOWNGRADE]
Click to expand...
Click to collapse
allows direct install apps after modify file in apk [ignore invalid digest error etc...]
Click to expand...
Click to collapse
allow overlay install apps with inconsistent signatures
Click to expand...
Click to collapse
you need install latest Edxposed and riru 23
you can download latest edxposed from EdXposed - AppVeyor [dev only]
Download: Releases · coderstory/CorePatch (github.com)
because of bad english , so i can only write in a nutshell
Source Code: coderstory/CorePatch: Disable signature verification For Android (github.com)
Xposed Package Name: com.coderstory.toolkit
Version Information
Status: Beta
Created 2020-12-15
Last Updated 2020-12-15
Thank you for this app. You're a life saviour.
Deleted
Why is it on Android 12 I can't get it to ask for root access and I don't believe it works? I have magisk 24.3 with zygisk
This is for A10/11/12 :
Releases · LSPosed/CorePatch
Disable signature verification For Android. Contribute to LSPosed/CorePatch development by creating an account on GitHub.
github.com
Techguy777 said:
I can't get it to ask for root access
Click to expand...
Click to collapse
it dosn't ask for root
you have to enable the module in lsposed and reboot
loopypalm said:
This is for A10/11/12 :
Releases · LSPosed/CorePatch
Disable signature verification For Android. Contribute to LSPosed/CorePatch development by creating an account on GitHub.
github.com
it dosn't ask for root
you have to enable the module in lsposed and reboot
Click to expand...
Click to collapse
It used to ask for root in android 11. Do I have to enable it for every individual app? Inside LSposed?
Techguy777 said:
Do I have to enable it for every individual app? Inside LSposed?
Click to expand...
Click to collapse
no, only sys framework
Doesn't seem to work on Android 12L sadly
good guys, I have installed Core Patch on my head unit with android 10.
everything works fine, i install system application (music player) correctly. But when I start the application I have denied access to storage devices.
Any help?
Tested with:
Code:
ArrowOS Version: arrow-11.0
ArrowOS Build Type: OFFICIAL
ArrowOS Build Variant: VANILLA
Device Name: POCO X3 NFC (surya)
This modification makes use of the addon.d survival mechanism found in almost all (if not all) custom ROMs, which is leading back to CyanogenMod, and allows the installation of Bromite SystemWebView with automatic reinstatement after a manual or OTA system update.
Create the folder /sdcard/Android/addon.d/webview and download Bromite SystemWebView to that location.
Place the following script with the name 51-webview.sh into /system/addon.d and make it executable (755), which can either be done from a root shell or through recovery after mounting /system with read-write access:
Code:
#!/sbin/sh
#
# ADDOND_VERSION=2
#
################################
# Restore Bromite SystemWeview #
################################
case "$1" in
post-restore)
AD="/sdcard/Android/addon.d"
D="/product/app/webview/webview.apk"
mount /dev/block/mapper/product /product 2> $AD/mount_error.log
[ -f $D ] && cp $AD/webview/arm64_SystemWebView.apk $D 2> $AD/webview_error.log
umount /product
;;
esac
That's it, either reinstall the current version of the used custom ROM through recovery or make an OTA update.
Now the catch with this was, that for some unknown reasons, addon.d scripts see the device mapping different than from a running system or recovery, please see this issue for details.
ArrowOS 11 has webview.apk in /product/app/webview/, but this may be different in other ROMs. In that case, simply have a look and change the destination ($D) in the script accordingly.
The script is safe to use as nothing gets modified if the webview file is not already found at the given destination.
To uninstall this modification, simply remove the file /system/addon.d/51-webview.sh.
You can also temporarily disable this modification by removing/renaming arm64_SystemWebView.apk from/in /sdcard/Android/addon.d/webview and everything gets back to default with the next system update.
BTW @unixandria's Webview Switcher Magisk Module is not working on Android 11 (yet), which is why I was looking into creating this mod in the first place. Please have a look at this issue in the Webview Switcher GitHub Repo.
magisk webview manager for android 11
https://dl.androidacy.com/wp-content/downloads/Magisk-Modules/WebviewSwitcher/WebviewManager_v8_0_1.zip
pan.rozowy said:
magisk webview manager for android 11
https://dl.androidacy.com/wp-content/downloads/Magisk-Modules/WebviewSwitcher/WebviewManager_v8_0_1.zip
Click to expand...
Click to collapse
Yes, already seen, but didn't try (because my method works as well). Any experience with the new Magisk module yet?
Master One said:
Yes, already seen, but didn't try (because my method works as well). Any experience with the new Magisk module yet?
Click to expand...
Click to collapse
it works ok
My "webview.apk" shows up under "/system/product/app/webview" as well as "/product/app/webview". I think "/system/product" is just a link to "/product".
If I can figure out the mount command for "/product", I'm going to try this.
Thanks for this information.
mangokm40 said:
My "webview.apk" shows up under "/system/product/app/webview" as well as "/product/app/webview". I think "/system/product" is just a link to "/product".
If I can figure out the mount command for "/product", I'm going to try this.
Thanks for this information.
Click to expand...
Click to collapse
Indeed, that file system path can be different depending on ROM, but you can easily find out yourself and simply change the location the shown script.
Master One said:
Yes, already seen, but didn't try (because my method works as well). Any experience with the new Magisk module yet?
Click to expand...
Click to collapse
Can we use bromit webview for android 7? After debloat google's.
I installed it but webview implemention in developer option is empty
pan.rozowy said:
it works ok
Click to expand...
Click to collapse
Source? Or, do you mind elaborate the "how to" process?
Before, i use mi8 with pixelexperience pie, which is easy to convert user app to system app. Now, i upgrade it to A11, webview folder scatter all across subfolder. I dont know which one should be replaced by new webview.
At first is good job
I use lineageos official
And is it possible to auto create oat too?
Akbar KanColle said:
And is it possible to auto create oat too?
Click to expand...
Click to collapse
Not sure what you mean, but this method can be adapted to whatever is needed to be restored.
physwizz A507 R kernel version 3.1
SM-A507FN u5 Android 11
For OneUI 3.1
( also works for GSIs)
Samsung securities disabled
More CPU governors
Conservative, On-demand, Userspace, powersave, performance, energy_step, shedutil
Optimised for performance
CPU:
Big 936 MHz - 2314MHz
Little 403MHz - 2054MHz
lz4 default compression added to zram
Bugs:
Root will be lost
Installation
Post 2
Kernel
physwizz - Repositories
physwizz has 172 repositories available. Follow their code on GitHub.
github.com
@physwizz
Installing physwizz custom kernels
INSTALL AT YOUR OWN RISK
I AM NOT RESPONSIBLE FOR ANY BRICKED PHONES
But I will help any well-mannered person to recover.
A. Preparation
1. Root the phone
2. Compress your patched boot.img to make boot.tar
3. Copy boot.tar to PC
B. Installation
Method 1
Install from twrp
Reboot to recovery
Backup boot and dtbo (if available)
Install kernel zip
Wipe both caches
Reboot
Method 2
Install kernel from terminal.
1. Download magisk module (magic-flash.zip) from https://github.com/Magisk-Modules-Alt-Repo/magic-flash
2. Install module and reboot.
3. Open terminal.
4. Navigate to folder containing kernel.zip.
Use
ls to list contents
and
cd to change directories
5. Type su
6. Type flash kernel_name.zip
7. Reboot
Method 3
Using ADB
Install adb tools on pc
Connect to PC
Copy zip file to adb folder on pc
Open terminal on pc
Navigate to adb folder
Type
adb sideload file-name.zip
Method 4
Using boot.img
Install AIK Mobile from magisk modules
Use rootexplorer to access
/data/local/AIK-MOBILE
Add patched boot.img and tap unpackimg.sh
Exit the folder and return to see the files.
Edit the files (eg to add a new Image
rename Image to boot.img-zImage and insert in split-image folder)
Tap repackimg.sh
Rename new_image.img to boot.img
Compress boot.img to boot.tar
Copy boot.tar to PC
Reboot phone to download mode
Install boot.tar from odin
AIKLink
Physwizz Collection
Install from magisk modules Use rootexplorer to access /data/local/AIK-MOBILE Add boot.img or recovery.img and tap unpackimg.sh Exit the folder and return to see the files. Edit the files (eg to add a new Image rename Image to boot.img-zImage and insert in split-image folder) Tap repackimg.sh
t.me
C. Removal
Method 1
Reboot to recovery
Restore boot and dtbo
Reboot
Method 2.
Reboot phone to download mode
Install patched boot.tar from odin
@physwizz
friendoo you can bring it for the galaxy a50
Chinito_H18 said:
friendoo you can bring it for the galaxy a50
Click to expand...
Click to collapse
I'll add it to my list
Chinito_H18 said:
friendoo you can bring it for the galaxy a50
Click to expand...
Click to collapse
SM-A505F Android 11?
Chinito_H18 said:
friendoo you can bring it for the galaxy a50
Click to expand...
Click to collapse
Here is A505 version for testing
physwizz said:
Here is A505 version for testing
Click to expand...
Click to collapse
Do you have kernel for android 12 A50?
rezabahramnezhad said:
Do you have kernel for android 12 A50?
Click to expand...
Click to collapse
A12 source code not available.
Is OneUi 4 available for your device?
physwizz said:
A12 source code not available.
Is OneUi 4 available for your device?
Click to expand...
Click to collapse
I use custom Rom (oneui4) but I don't like include kernel
rezabahramnezhad said:
I use custom Rom (oneui4) but I don't like include kernel
Click to expand...
Click to collapse
Note: physwizz kernels work best with debloated stock
https://t.me/physwizz2/234
or with wizzROM
Physwizz Collection
wizzROM Creator magisk module v4 Thermal DO NOT INSTALL FROM TWRP for all Samsung phones Debloated ROM with Extras Fixed apps in system/product Extras: Battery charge limit Clean Master ES file explorer HKtweaks SimpleReboot Root Explorer Zarchiver physwizz-2 Thermal throttling removed...
t.me
Other custom ROMs may not be supported
hey, can I use this kernel with android 13 in a50s?
RamanSandhu said:
hey, can I use this kernel with android 13 in a50s?
Click to expand...
Click to collapse
Not yet
Hi ,
it work for A50S " SM-A5070 " , Android 11 , One UI 3.1 ?
if it work , is it possible convert Enforcing to permissive ?
balo091 said:
Hi ,
it work for A50S " SM-A5070 " , Android 11 , One UI 3.1 ?
if it work , is it possible convert Enforcing to permissive ?
Click to expand...
Click to collapse
Let me know if it works. OneUI won't boot on permissive
Hey, are you working on updating this kernel for android 12 & 13?
RamanSandhu said:
Hey, are you working on updating this kernel for android 12 & 13?
Click to expand...
Click to collapse
I'll see what I can do
Thank you.
GitHub - WSA-Community/WSAGAScript: Scripts to install Google Apps into a WSA image. Plus optional root
Scripts to install Google Apps into a WSA image. Plus optional root - GitHub - WSA-Community/WSAGAScript: Scripts to install Google Apps into a WSA image. Plus optional root
github.com
when i replace the kernel with the one provided i cant boot WSA,
trying to get root access to setenforce to 0 so i can login to the playstore,
i recommend this script for doing it as it install Gapps and Magisk for you automaticly