Xposed Logs not showing - Xposed Framework Development

Hi there, no matter how many times I try to get the xposed logs to show they do not show for me whatsoever, my modules all work apart from one (snapprefs) and there's no way for me to check why it's not working because of the log issue.
Any help would be much appreciated, thanks in advance.

anonymous2120 said:
Hi there, no matter how many times I try to get the xposed logs to show they do not show for me whatsoever, my modules all work apart from one (snapprefs) and there's no way for me to check why it's not working because of the log issue.
Any help would be much appreciated, thanks in advance.
Click to expand...
Click to collapse
Me too, it show me empty

anonymous2120 said:
Hi there, no matter how many times I try to get the xposed logs to show they do not show for me whatsoever, my modules all work apart from one (snapprefs) and there's no way for me to check why it's not working because of the log issue.
Any help would be much appreciated, thanks in advance.
Click to expand...
Click to collapse
Zak1997 said:
Me too, it show me empty
Click to expand...
Click to collapse
Logs Are Showing Perfectly in Logs Section Of Xposed App ..
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
..
Are You Guys Telling About ,Can't Able to Retrieve Logs from Third Party Apps(Catalog Etc) or Within the Xposed App Itself ? ..

LoverBoy2415 said:
Logs Are Showing Perfectly in Logs Section Of Xposed App
Are You Guys Telling About ,Can't Able to Retrieve Logs from Third Party Apps(Catalog Etc) or Within the Xposed App Itself ?
Click to expand...
Click to collapse
I also have this problem, the logs don't show in the xposed app and just says Log is empty. In a file explorer in the logs folder (data/data/de.robv.android.xposed.installer/log/) only the error.log and error.log.old show up but they both contain 0 bytes.
Bit off topic but @LoverBoy2415 what module are you using to make xposed look like that?

GOGO98901 said:
I also have this problem, the logs don't show in the xposed app and just says Log is empty. In a file explorer in the logs folder (data/data/de.robv.android.xposed.installer/log/) only the error.log and error.log.old show up but they both contain 0 bytes.
Bit off topic but @LoverBoy2415 what module are you using to make xposed look like that?
Click to expand...
Click to collapse
Check This Thread To Downland The Xposed Which I'm Using.. I Think This App of Xposed Has No Issues in Viewing Logs In The App ..
Check & Tell Me ..
http://forum.xda-developers.com/xposed/material-design-xposed-installer-t3137758

Just tried it and it worked! Looks as though the repo that wasn't working was on my sd card causing issues

I tried it and the log is still empty for me, though it does show that I am having some manner of permission issues. First, it said file does not exist (rather than just log is empty) and then when I made the file myself via a file manager, it said permission denied EACCES. I tried giving all read write permissions on that file, but it's still the same.

anonymous2120 said:
Hi there, no matter how many times I try to get the xposed logs to show they do not show for me whatsoever, .....
Any help would be much appreciated, thanks in advance.
Click to expand...
Click to collapse
Same here with Huawei mate 7

no logs for me either with xposed v86 on a huawei mate s running android 6.0

GOGO98901 said:
I also have this problem, the logs don't show in the xposed app and just says Log is empty. In a file explorer in the logs folder (data/data/de.robv.android.xposed.installer/log/) only the error.log and error.log.old show up but they both contain 0 bytes.
Bit off topic but @LoverBoy2415 what module are you using to make xposed look like that?
Click to expand...
Click to collapse
Same issue here. Rooted Huawei P8lite with stock EMUI 4.0.3.

i have the same porblem on my Mi-4C
i have the same porblem on my Mi-4C, no log, but i can see it on android studio logcat. need help!!

Try this...
Go to your device Settings --> Apps --> XPosed Installer --> Permissions...
There's typically a "Storage" option that needs to be permitted (slide the button to the right to allow) and then reboot the device and you should now be able to see the XPosed Installer log information.
That's how i was able to see it.
***Please Note: As always, I welcome any member to help with further valuable information/clarification for any of my posts.
Sent via Communicator [D2VZW] from the Bridge of the U.S.S. Enterprise...

my solution is to implement a log on my own. it works for me.
static PrintWriter logWriter = null;
static PrintWriter initLogFile(String name){
PrintWriter logWriter = null;
File t = new File("/data/data/de.robv.android.xposed.installer/log/"+name);
try {
logWriter = new PrintWriter(new FileWriter(t, true));
} catch (IOException e) {
e.printStackTrace();
}
t.setReadable(true, false);
t.setWritable(true, false);
return logWriter;
}
static void writeLog(PrintWriter writer, String content){
if(writer != null) {
writer.println(content);
writer.flush();
}
}
static void initLog(){
if(logWriter == null){
logWriter=initLogFile("error_my.log");
}
}
static void log(String string){
writeLog(logWriter,string);
}

Related

[CDMA][W/VGA] Jmz Provisioning -- Select your carrier on first boot

Jmz Provisioning
Select your carrier on first boot​
Finally, the release of the bug free Jmz Provisioning. Many things have changed since the first beta so please read the notes below carefully.​
Release Notes:
Leave app.dat file alone.
Leave the package the way it is
Registry Entries are as follows
CarrierCount is how many provisioning cabs you are using
Carrier1, Carrier2, and so on are the carriers you want listed
Headertext is what you want it to say at the top of the app
Carriers is a changing number so don’t worry about that one
Firstrun — 1=runcc reboots phone on first boot, 2=runcc does not reboot your phone on first boot
Sometimes the app hides so you have to look at task manager to bring it forward. Currently trying to fix this small issue
Cab names are Carrier1.cab, Carrier2.cab and so on to match the above reg entries.
.NET 3.5 is required.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download​
Certainly looks great. Maybe you should include in title that it is for CDMA ROMs. Does Connection setup not work on CDMA?
I hope to see a lot more applications with the same graphic ui. Can you please remake every app that exists? Do you have any more that us GSM folks can use? Thanks for your contributions.
Program crashes whenever i select a provider. Any help? Anyone else seeing this issue? Does it require .Net 2.0 or something
Bxsteez said:
Program crashes whenever i select a provider. Any help? Anyone else seeing this issue? Does it require .Net 2.0 or something
Click to expand...
Click to collapse
Yes it requires the latest .net package installed.
I have .net 3.5 installed and it still crashes
Bxsteez said:
I have .net 3.5 installed and it still crashes
Click to expand...
Click to collapse
can you post the error report. The first couple lines should suffice. Also, did you change any of the cab names? that is hard coded.
An Unexpected error has occured in Jmz Provisioning.exe
at System.IO._Error.WinIOError(Int32 errorCode, String str)
at System.IO.File.Delete(string path)
at SmartDeviceProject1.Form1.ManilaButton3_Click_1(Object sender, EventArgs e)
I didn't change any file names I just downloaded ur OEM package
Bxsteez said:
An Unexpected error has occured in Jmz Provisioning.exe
at System.IO._Error.WinIOError(Int32 errorCode, String str)
at System.IO.File.Delete(string path)
at SmartDeviceProject1.Form1.ManilaButton3_Click_1(Object sender, EventArgs e)
I didn't change any file names I just downloaded ur OEM package
Click to expand...
Click to collapse
did you change the app.dat file?
this is what is my app.dat
Directory("\windows\startup"):-File("Jmz Provisioning.lnk","\windows\Jmz Provisioning.lnk")
Bxsteez said:
this is what is my app.dat
Directory("\windows\startup"):-File("Jmz Provisioning.lnk","\windows\Jmz Provisioning.lnk")
Click to expand...
Click to collapse
well, how the program works is this. It puts that shortcut in startup. Then when you click an option in the program it deletes that shortcut so it doesn't run again on next boot. So for some reason it cannot delete that file in the startup folder. Ensure the lnk file is not read-only. Other than that I can't really know what is going on. But bottom line is that the lnk file cannot be deleted from the startup folder for some reason.
Hmmm... Its not read only. I'm not sure why it can't be deleted. I know i can delete it if i got into startup and delete it. Any ideas on a solution?
Bxsteez said:
Hmmm... Its not read only. I'm not sure why it can't be deleted. I know i can delete it if i got into startup and delete it. Any ideas on a solution?
Click to expand...
Click to collapse
Has it ever worked for your kitchen?
No not once
Bxsteez said:
No not once
Click to expand...
Click to collapse
does the cab actually install?
No it crashes once you hit the carrier.
there is a newer version on ppc geeks
Released R1

IR Remote[CM12][v1.9.1.3]

IR Remote
Screenshots:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
More here - https://drive.google.com/folderview?id=0B_jEBCcAutu_UmdqaWxNOTRDSDg&usp=sharing
Short description:
Read and send signals from IR blaster.
Description:
Small app to send and write signals from IR for Sony Xperia ZL and Sony Tab Z. After installation you can download keys for available brands from settings. App is designed for CyanogenMod 11, if you want to use it on stock or on an older/newer CyanogenMod version, you'll need root.
IF YOU RUN IT ON CYAOGENMOD12(Android 5.0.x) YOU'LL NEED TO DISABLE SELINUX MANUALLY! Keep in mind that disabling SELinux makes your device less secure!
To use this app on CM12.1 you need to install a bit specific build(you can download it here - https://drive.google.com/file/d/0B_jEBCcAutu_b2JvVHJiZU9xVFk/view?usp=sharing). It contains SELinux realted changes. You can find theses changes here - http://review.cyanogenmod.org/#/c/98389/ .
If you have any ideas about improving this app, please, write me
Download: v1.9.1.3
Google Play: https://play.google.co…ails?id=com.sssemil.ir
Google Drive: IRRemote-v1.9.1.3.apk
XDA: View attachment IRRemote-v1.9.1.3.apk
Found a bug? Submit here(and logcat please) - https://github.com/sssemil/SonyIRRemote/issues
And source code - github
Changelog - https://github.com/sssemil/android_packages_apps_IRRemote/commits/gradle
App should work on Sony Xperia ZL and Sony Tab Z
Thanks to BuzzBumbleBee for lib_sony_ir (https://github.com/BuzzBumbleBee/lib_sony_ir)
cool keep it up!
suleymanovemil8 said:
Sony IR Remote
View attachment 2633445
View attachment 2633446
Needs root permissions.
Short description:
Read and send signals from ir.
Description:
Small app to send and write signals from ir. it is under development now, but you can use it. I'm author( but I have used this library https://github.com/BuzzBumbleBee/lib_sony_ir ) After installation you should add new device in settings. I'll add keys later.
If you have any ideas about improving this app, plese, write me
And source code - https://github.com/sssemil/SonyIRRemote
Download: v1.4
https://app.box.com/s/0ntvzh0i4blro36hllqe
Click to expand...
Click to collapse
it doesn´t work cause FC when i am adding a new device!
thanks!!!
Same here. FC's on LiquidSmooth Rom. Lots of potential though!!
Added new version
suleymanovemil8 said:
Added new version
Click to expand...
Click to collapse
i still getting FC
y can´t add any device
acabreram said:
i still getting FC
y can´t add any device
Click to expand...
Click to collapse
Could you post logcat, please?
suleymanovemil8 said:
Could you post logcat, please?
Click to expand...
Click to collapse
where are the logs??
thanks!!
acabreram said:
where are the logs??
thanks!!
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1726238
Nice
You could also try implementing something from this http://forum.xda-developers.com/showthread.php?t=2271113 as it has nice ui and many tv codes
Edit:the download link does not contain an apk.it is a zip with parts of the app
FC when trying to add a device. ROM: Carbon. Thanks anyway, good start!
Working well!
learnt signal and sent successful
Carbon ROM 4.4
one problem is that whenever I press a button, there's a toast saying (button name) + null
I use the cm10.2.1 the apk installed and normally opened for me. However I could not make it work on my TV's. I downloaded in the settings but nothing has changed.
How do I do to connect with my tv's? Can someone explain what is missing or a step by step how to do?
Thank you.
Emil, how do you use it to read codes from the TV? Çox sağ ol
Phat7 said:
Emil, how do you use it to read codes from the TV? Çox sağ ol
Click to expand...
Click to collapse
Press Switch to write mode->start and then press button you want to write signal
Deimez)
Works on my Sony TV!
Nice work dev!
does it only work with sony products? i have a samsung tv and cannot get it to work.
foomanjackel said:
does it only work with sony products? i have a samsung tv and cannot get it to work.
Click to expand...
Click to collapse
It should work with any device with ir remote control(ex. TV) and any brand.
well i got the on/off button to work, but could not get any others working. oh well, its a start. thanks for this app by the way!!
foomanjackel said:
well i got the on/off button to work, but could not get any others working. oh well, its a start. thanks for this app by the way!!
Click to expand...
Click to collapse
It is working pretty strange yet) Try to wait 1 second after dialog "Waiting for signal..." appears

[Fix] Fix for VOIP calling on lollipop roms where microphone doesnt work

*Only tested on D855 so I take no responsibility for anything that happens to your device after this.*
I installed Cyanogenmod 12 on my D855 but noticed that the microphone would not work with VOIP applications. I looked into this and found a fix which is pretty simple as it only involves changing the build.prop.
Procedure
1. Using a File Explorer that will allow you to access root files, find the build.prop file in the "system" folder
2. Backup your build.prop by adding .bak onto the end of the filename (just to be sure )
3. Using a text editor, change the line use.dedicated.device.for.voip=true to use.dedicated.device.for.voip=false
4. After you have edited the build.prop as above, restart the device. Changes should take effect.
5. The microphone should have access to VOIP apps now.
I was struggling to find this for a few hours. If anyone has any suggestions or comments, please write them down below. If it worked, say thanks.
Merry Christmas
Thankyou! I was just about to start looking into the VoIP issue then saw your post. Very happy I have VoIP now for Christmas calls.
Do you mind if I link this to the D855 cm12 development thread?
Can't believe is this so simple? Thanks so much!!!
Sent from my LG-D855 using XDA Free mobile app
kroonys3 said:
Thankyou! I was just about to start looking into the VoIP issue then saw your post. Very happy I have VoIP now for Christmas calls.
Do you mind if I link this to the D855 cm12 development thread?
Click to expand...
Click to collapse
Yes of course you can link it, I am new here so I couldnt post it on any popular or relevant thread in regards to G3 Development. If you could give credit when sharing it would be great. Thanks
marcelol151 said:
*Only tested on D855 so I take no responsibility for anything that happens to your device after this.*
I installed Cyanogenmod 12 on my D855 but noticed that the microphone would not work with VOIP applications. I looked into this and found a fix which is pretty simple as it only involves changing the build.prop.
Procedure
1. Using a File Explorer that will allow you to access root files, find the build.prop file in the "system" folder
2. Backup your build.prop by adding .bak onto the end of the filename (just to be sure )
3. Using a text editor, change the line use.dedicated.device.for.voip=true to use.dedicated.device.for.voip=false
4. After you have edited the build.prop as above, restart the device. Changes should take effect.
5. The microphone should have access to VOIP apps now.
I was struggling to find this for a few hours. If anyone has any suggestions or comments, please write them down below. If it worked, say thanks.
Merry Christmas
Click to expand...
Click to collapse
I Cant Find this string in my build.prop . my phone is samsung s3 mini running lolipop 5.0.2
mahdik.m said:
I Cant Find this string in my build.prop . my phone is samsung s3 mini running lolipop 5.0.2
Click to expand...
Click to collapse
I couldnt really help you with that one as I dont own an S3 Mini at all. If you could send me your build prop in PM maybe I could try have a look at it. Thanks
marcelol151 said:
*Only tested on D855 so I take no responsibility for anything that happens to your device after this.*
I installed Cyanogenmod 12 on my D855 but noticed that the microphone would not work with VOIP applications. I looked into this and found a fix which is pretty simple as it only involves changing the build.prop.
Procedure
1. Using a File Explorer that will allow you to access root files, find the build.prop file in the "system" folder
2. Backup your build.prop by adding .bak onto the end of the filename (just to be sure )
3. Using a text editor, change the line use.dedicated.device.for.voip=true to use.dedicated.device.for.voip=false
4. After you have edited the build.prop as above, restart the device. Changes should take effect.
5. The microphone should have access to VOIP apps now.
I was struggling to find this for a few hours. If anyone has any suggestions or comments, please write them down below. If it worked, say thanks.
Merry Christmas
Click to expand...
Click to collapse
Hey I tried this method now when I receive call it works but when I call to someone no voice recived for both side..any solution?
Change True to false(PCM. Voip...)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
working here.
Cant find
that line is not on Pacman 4.4.4 for lg e980
i cant find the line user..... help!

unfortunately contacts has stopped

Two days back I update my Z5P on MM. After update did a master rest every thing is running perfect. MM is excellent update but yesterday I got error "unfortunately contacts has stopped" without doing anything. When I am going to make a call press on phone this error appears. I cleared phone cache and dialer cache every thing but problem is there. Any help I don't want to do again reset. Mean while I installed true caller and it works but I want to use default dialer. Any help or suggestion thanks in advance.
I have the same problem after update
Ditto on the issue
I am experiencing the same issue after the 32.2.A.0.224 update.
Phone is running everything stock with no root or unlocked bootloader.
Please advise.
same here just updated and lost the ability to dial any number. 3d party dialers work. Tried cleaning cashe and data on the contacts app, and when that did not work did a repair on the sony xperia companion . problem persists.
please,
- install any logcat app (for example LogcatX)
- run it and start registering
- press the home button
- open the dialer and let it crash
- immediately press recents button (multitask button) and re-open the logcat app
- pause logcat recording and upload here the file
We can try to analyze the problem.
ninestarkoko said:
please,
- install any logcat app (for example LogcatX)
- run it and start registering
- press the home button
- open the dialer and let it crash
- immediately press recents button (multitask button) and re-open the logcat app
- pause logcat recording and upload here the file
We can try to analyze the problem.
Click to expand...
Click to collapse
I have the same problem, this is the log entry that pops up anytime the dialer crashes:
06-22 07:36:06.190 I/Timeline(19241): Timeline: Activity_idle id: [email protected] time:16891172
That's not an error, please follow the instructions and post the log
ninestarkoko said:
That's not an error, please follow the instructions and post the log
Click to expand...
Click to collapse
I am sorry to ask this but don't log programs need root access?
My Z5 is not rooted.
ninestarkoko said:
That's not an error, please follow the instructions and post the log
Click to expand...
Click to collapse
I did follow the instructions. The phone is not rooted though, do I need root to capture the error?
HyoImowano said:
I did follow the instructions. The phone is not rooted though, do I need root to capture the error?
Click to expand...
Click to collapse
You can get a logcat with ADB. Search on Google how to do it
Sent from my Z5 Premium using XDA Labs
HyoImowano said:
I did follow the instructions. The phone is not rooted though, do I need root to capture the error?
Click to expand...
Click to collapse
Unfortunately you'll need root to use logcat apps on the phone, but you should not need root to run logcat from the computer using ADB, so:
- enable "USB debug" from developer options,
- then install this driver http://developer.sonymobile.com/downloads/drivers/xperia-z5-premium-driver/
- then install only ADB using this http://forum.xda-developers.com/showthread.php?p=48915118
- connect your phone to the computer and run
adb logcat > logcat.txt
from a command window and give authorisation from the phone to the computer,
- open contacts and let it crash
- immediately unplug the phone
- load the logcat.txt created in C:/Windows, or where adb was extracted
I contacted Sony for help and this is what I was told:
Dear Customer,
Thank you for contacting Sony Xperia™ Online Support.
Regarding your inquiry, we are sorry that your phone contacts is not working after you have updated your phone and not even a software repair has worked; we'd like to assist you.
At the moment this issue has been already identified and a new software patch is in development in order to fix this issue; we are sorry for the inconvenience this may cause.
As part of Sony Mobile's commitment to excellent customer service, we offer a wide variety of mobile products to suit your lifestyle. If you require more information, or have any other questions
Kind Regards,
Alan
Sony Xperia US Customer Services
Oh, well problem solved then. Just need to wait for Sony Mobile to issue an update...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I too had this issue after 32.2.A.0.224 update. Not only it affects my Contacts, also the Bluetooth Share, Calculator, Chrome and etc.
What I did to solve is to Force Stop, Clear Data and Clear Cache.
Once reboot, it should work normally.
I just got the latest firmware this morning (32.2.A.0.253) and now I my contacts app is stable and I can finally dial numbers again.

[MAGISK] Change Bengali Font on Your OnePlus 6T

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Font Freak: Bengali Fonts
If you are a rooted android user using Magisk, you're in luck. Some of you might remember the Bengali font modules that were in the Magisk Repo until a few days ago. They are no longer being allowed due a recent change in their policy. As such, I created a dedicated Repo for Bengali font modules. Download links are at the bottom of this post.
What is it?
It is an app in the form of a module for quicker and safer use. So, if you run into any problems, you can simply disable the module. NO RISK!
(P.S. As you can read from the title of this post, it will allow you to change the Bengali Font on your device. You can read more on that under how to use it. )
How to use it?
Simply install the module provided here. It will give you an app called "Font Freak". Open that app and you will find numerous font modules inside. Currently there are 12 font modules (as of 21 May 2019), but the number will only increase from henceforth.
What do I need to have?
Basic things really.
A rooted android device.
Magisk & Magisk Manager.
TWRP (Optional, but important).
Anything to be careful about?
YES! As explained in the description of each module inside the app, you cannot use multiple font modules at the same time. If you have activated two or more font modules at once, your device will go into a bootloop. But this is not deadly at all. You will need to install Magisk Manager for Recovery, which allows you to disable modules from TWRP recovery. Once you disable excess font modules, your phone will boot again.
Is this for OnePlus 6T only?
Not at all. This will work on any device meeting the requirements stated above.
Screenshots!
​(Click to enlarge.)
Further questions?
Please join the dedicated Telegram group for this project.
► Download Link
► Telegram Group Link
in what is it section
you should wright something about the module actually what for
what does it do !!?
sifatrhmn said:
in what is it section
you should wright something about the module actually what for
what does it do !!?
Click to expand...
Click to collapse
See "How to use it" for your answer. As stated in the post, it is module that functions as a repo for other font modules. Read carefully please.
NaeemBolchhi said:
See "How to use it" for your answer. As stated in the post, it is module that functions as a repo for other font modules. Read carefully please.
Click to expand...
Click to collapse
I'm sorry may be u don't understand my question..
everyone actually know how to use a module ..
if there is something new we want to know " what is it " what it can do not how to use it .
sifatrhmn said:
I'm sorry may be u don't understand my question..
everyone actually know how to use a module ..
if there is something new we want to know " what is it " what it can do not how to use it .
Click to expand...
Click to collapse
The "How to use it" section explains how to use the functions of the app, essentially "What it is". I know everyone knows how to use a module. I have not explained how to flash one of those.
The module systemlessly installs an "app" called Font Freak, which functions as a repo for font modules. That's what the module is. I think this was clear in the post as well.
If you want a specific answer to what it can do, isn't that already in the title of the post?

Categories

Resources