Enable Hidden Dark Mode for pocophone f1 Miui10 - Xiaomi Poco F1 Guides, News, & Discussion

For those of you who cannot wait until miui 11 - here is a easy trick to activate dark mode
How to enable dark mode
Connect your device to your PC , open command prompt in the same directory where ADB binary is stored
Enable Dark Mode: adb shell settings put secure ui_night_mode 2 Disable Dark Mode: adb shell settings put secure ui_night_mode 1
Reboot your phone to get the system-wide dark mode
*before doing these change your theme to classic version
*enable usb debugging security settings as well - once you activated dark mode you can turn it off.
im using global rom with locked bootloader
10.3.5.0
source:
http://c.mi.com/thread-2274658-1-0.html

Or just use eu roms and that option is built in.

As far as I understand, we have to enter these lines everytime if we want to switch from dark to white vice versa? I can't see any toggle after I enabled the dark mode. I even tried the (auto) mode and it is not changing.

Works great! MIUI 10 Beta 9.6.27, locked bootloader.
Thank you very much!!

mkozal said:
As far as I understand, we have to enter these lines everytime if we want to switch from dark to white vice versa? I can't see any toggle after I enabled the dark mode. I even tried the (auto) mode and it is not changing.
Click to expand...
Click to collapse
Yes you are right
There will be no toggle
They hide this toggle in poco phone but dark mode is still supported
For my case I don't change between modes
It will happen only once

Pavamarea said:
Works great! MIUI 10 Beta 9.6.27, locked bootloader.
Thank you very much!!
Click to expand...
Click to collapse
I am happy that it worked ???

Worked on Pocophone F1
Worked on Pocophone F1 (MIUI Global 10.3.7)
You are the BEST....I had this issue where I couldn't change to system mode (after plugin in the android car it changed to dark mode and won't come back to the default)....
I've tried a lot of stuff to change it back to default and nothing worked...
Now it worked thanks to you!!!
Regards,
Vinicius

that's what I'm getting even after setting the theme to classic mode.

Nfury00701 said:
that's what I'm getting even after setting the theme to classic mode.
Click to expand...
Click to collapse
You must activate developer options (security) for it to work.
I got the same issue that you before enable that option.
Regards,

vmantovani said:
You must activate developer options (security) for it to work.
I got the same issue that you before enable that option.
Regards,
Click to expand...
Click to collapse
the developer option is ON and it still showing this

There's another option below the developer options, Developer Options (Security Settings). You have to enable that. MIUI will ask if you want to enable it, just wait for 5 seconds and tap yes, and you're good to go.

Related

[Q] remove Fade effect between apps

Any clue on how to remove the fade effect when switching between apps?
I use latest ver of CM 11
Thanks
t
Settings>Developer Options>Transition animation scale -> set to 0
If you don't see developer options, then:
settings>about>tap 7 times on build number, then go back and you should have developer options
S M G said:
Settings>Developer Options>Transition animation scale -> set to 0
If you don't see developer options, then:
settings>about>tap 7 times on build number, then go back and you should have developer options
Click to expand...
Click to collapse
Thanks, solved

[Q] Is there a way to add more reboot options to power menu? (Lollipop)

Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
AppEx213 said:
Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
rajneeshk said:
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
Click to expand...
Click to collapse
Xposed does not run on Android 5 (ART runtime), xposed only runs on DALVIK
For the reboot options I'm fine with Simple Reboot by Francisco Franco - https://play.google.com/store/apps/details?id=simple.reboot.com&hl=de
Cheers
hr_kaleu said:
Xposed does not run on Android 5 (ART runtime), xposed only runs on DALVIK
For the reboot options I'm fine with Simple Reboot by Francisco Franco - https://play.google.com/store/apps/details?id=simple.reboot.com&hl=de
Cheers
Click to expand...
Click to collapse
Simple reboot is fine, but its still an app. I wanted something that is on the power menu.
Is there nothing you can do to the framework apk or system ui?
rajneeshk said:
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
Click to expand...
Click to collapse
Everyone and their mother knows that Xposed is incompatible with Lollipop.
AppEx213 said:
Simple reboot is fine, but its still an app. I wanted something that is on the power menu.
Is there nothing you can do to the framework apk or system ui?
Click to expand...
Click to collapse
You can flash a custom ROM with that option i.e. Cataclysm.
AppEx213 said:
Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
Not on the stock framework (if you are rooted) atm as Xposed doesn`t support ART yet and maybe never will.
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Lethargy said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
So I decompile framework-res.apk go to values and edit config.xml, search for silent and change false to true?
AppEx213 said:
So I decompile framework-res.apk go to values and edit config.xml, search for silent and change false to true?
Click to expand...
Click to collapse
This part is commented out (isn't included when built/compiled, used in source to usually provide info) and won't appear when you decompile it:
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
It tells you the possible options you can use in the power menu array
See this part, which is the actual array:
Code:
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Bug report is shown only if you enable it in Settings > Developer Options and User selector is only shown if you have multiple users.
"silent" isn't in the array (config_globalActionsList), but its a possible option as stated by the comment in source code, so you can add:
Code:
<item>silent</item>
into the array where you want it to be, and it'll show up in the power menu. You can also add settings and airplane mode as stated by the comment.
Adding additional possible entries (like reboot) requires modifying other source code, which you'll have to compile AOSP to do anyways which defeats the purpose of specifically modifying stock, except maybe in a case like Cataclysm ROM by atl4ntis. Or edit smali.
That icon on the right with the white circular arrow saves all that, if you put it in the dock is a very good substitute. Plus it's a wide choice...
I know it's not baking something into the OS but those after a quick, useful workaround it's a winner
How exactly would I get this working? Do I need to compile just one .apk or a complete ROM? I feel like I cannot install Lollipop without silent mode working...
rien-ne-va-plus said:
How exactly would I get this working? Do I need to compile just one .apk or a complete ROM? I feel like I cannot install Lollipop without silent mode working...
Click to expand...
Click to collapse
Flash Lollipop then take out framework-res.apk, decompile it on your PC and add it into the array. Recompile and push back onto device.
Lethargy said:
Flash Lollipop then take out framework-res.apk, decompile it on your PC and add it into the array. Recompile and push back onto device.
Click to expand...
Click to collapse
I cannot confirm this to be working. I installed a custom Lollipop ROM which had the silent mode in the framework-res.apk activated but when pressing the button in the shutdown menu it would simply switch to the "important" mode, thus letting more through than desired. Doesn't seem to be the old silent mode. I pulled the file, too, and checked the array configuration...
rien-ne-va-plus said:
I cannot confirm this to be working. I installed a custom Lollipop ROM which had the silent mode in the framework-res.apk activated but when pressing the button in the shutdown menu it would simply switch to the "important" mode, thus letting more through than desired. Doesn't seem to be the old silent mode. I pulled the file, too, and checked the array configuration...
Click to expand...
Click to collapse
Here is allready thread by garynych: http://forum.xda-developers.com/goo.../mod-3-power-menu-stock-5-0-1-deodex-t2997128 with restart option in power menu for deodex rom and extended power menu without restart for odex rom. The second one has the same issue as in your description.
Regards, Zagor
So I understand you don't have a silent mode either using those files, correct? Thanks for the link
BirchBarlow said:
Everyone and their mother knows that Xposed is incompatible with Lollipop.
You can flash a custom ROM with that option i.e. Cataclysm.
Click to expand...
Click to collapse
except my mum knows the workaround for xposed for lollipop.
not fond at Sony stock lollpop
Elluel said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
i cant find config.xml in Sony lollipop stock 270 framework
any solution???
AppEx213 said:
is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
Do the same as I did - instal the app Link2SD. It's very usefull app and I have the option of restarting from there in more options - reboot, quick reboot, reboot to recovery.
Elluel said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
sir can you point me to a site or link for aosp 7.1.1 nougat? or can you teach us here? thank you
ian97 said:
sir can you point me to a site or link for aosp 7.1.1 nougat? or can you teach us here? thank you
Click to expand...
Click to collapse
You just revived a 3-year-old thread, congrats.

[SOLVED] MTCE GS 3.07 settings entries missing, clock does not work properly

My device info:
Build number: rk3368-userdebug 9 PQ2A.190205.003 eng.hct2.20190411.192110 test-keys
Kernel version: 4.4.167
MCU version: MTCE_GS_V3.07_3
In settings menu I don't see lot of std android settings (probably hidden for normal user).
I would like to enable split screen (it is disabled by default - 7 inch screen), but I can not enter developer options.
Standard android way with tapping build number is not working.
I also tried apps (e.g. "developer options) but it does not work - it shows "First enabled developer options".
I also tried rooting (simple way) with code (*#htc#root#) in factory settings, and with kingoroot. It does not work.
Do I need use adb for that?
Additionally clock is not working properly. After vehicle shutdown signal - radio is falling a sleep. After wakeup it looks like time freeze.
If I activate GPS time adjust it makes clock late 30 minutes.
If I activate internet time update it makes clock late 1h - probably because of winter / summer time switch, but I don't see that setting (also hidden).
Any help would be pleasent
I would try to change to stock rom.
But Im not sure if that would be even possible if I do not enable developer options first and next usb debug to access adb and flash mode.
Maybe it could be done by MCU update file? somehow make it to change system configuration?
SZAMAN92 said:
I would try to change to stock rom.
But Im not sure if that would be even possible if I do not enable developer options first and next usb debug to access adb and flash mode.
Maybe it could be done by MCU update file? somehow make it to change system configuration?
Click to expand...
Click to collapse
for what vehicle is that HU ?
i have same for opel, and have problems with stering wheel buttons, when i press next or back button it react like i press it 2 or 3 times :/
do you know how to enter recovery in that unit? maybe flash other MCU file ?
It is my device
https://xtrons.com/renault-megane-iii-fluence-android-9-0-pa79mg3rip
For me wheel buttons work well.
However try to check factory settings
Settings > Factory settings > enter code (126 in my case) > Keys
I have there option to change CAN bus to proper vehicle model.
Unfortunetaly I don't have experience with flashing such devices. Until now I was flashing only smartphones.
There were lot of tutorials how to do that. For Android auto HU I dont know even how to start.
For smartphone you could enter recovery by adb, but first you need unlock USB debugging. If you have access to developer options you could do that - that is not my cas.. sadly.
EDIT:
I found solution for time issue
https://forum.xda-developers.com/showpost.php?p=72946736&postcount=4
EDIT2:
Better solution
1. Get root
https://forum.xda-developers.com/showpost.php?p=76725981&postcount=740
2. Use that app
https://play.google.com/store/apps/details?id=ru.org.amip.ClockSync&hl=pl
EDIT3:
1. Malaysk ROM!!!
Clock work without any problem, I have split screen on my 7 inch device

[Guide][Stable] How to clean Install CN ROM + TWRP + ROOT + GAPPS on our Nubia Red Magic 3

Hello guys, welcome again to my thread
this thread will be my tutorial too for reminder how to reinstalling my Nubia Red Magic 3
i will tell you how to do step by step guide how to do clean Install :
Requirement :
- ADB installed, check with command
Bash:
adb devices
Download all needed first :
First download ROM here V3.34 : http://romdownload.nubia.com/红魔3/V3.34/NX629J-update.zip
// android 11 is not stable yet, there is a lot of function like gyro and other sensor that not working
After that download TWRP here, https://forum.xda-developers.com/t/...twrp-for-nubia-red-magic-3-3s-stable.3962482/
then download Magisk APK : https://magiskmanager.com/
create a zip file from Magisk.apk -> Magisk.zip, we need both of them
then download NIK GAPPS NikGapps-core-arm64-10-20210424-signed.zip and nikgapps config, https://sourceforge.net/projects/nikgapps/files/
download nik gapps, Releases > 23 April 2021 > NikGapps-full-arm64-10-20210423-signed.zip > https://sourceforge.net/projects/ni...ps-full-arm64-10-20210423-signed.zip/download
download nik gapps config, Relaases > Config > nikgapps.config > https://sourceforge.net/projects/nikgapps/files/Releases/Config/nikgapps-config/
After download, do this carefully step by step :
Bash:
# go to download folder
cd ~/Downloads
# now on android, Settings > About Phone > click Build Number 5 times
# go to developer options with usb debugging enable
# Settings > Advanced Settings > Developers Option > Enable toggle USB Debugging > Enable toggle OEM Unlocking
# push ROM file to adb
adb push NX629J-update.zip /storage/emulated/0/
# after push go to your android,
# go to Settings > System Update > pick "..." 3 dot on top right corner > Local Update
# then install Choose from local and pick NX629J-update.zip
# Install
# now on android, after all ROM installed successful do unlock developer options
# Settings > About Phone > click Build Number 5 times
# go to developer options with usb debugging enable
# Settings > Advanced Settings > Developers Option > Enable toggle USB Debugging > Enable toggle OEM Unlocking
# then reboot to bootloader
adb reboot bootloader
# then do unlock and flash twrp
fastboot devices
fastboot oem nubia_unlock NUBIA_NX629J
fastboot flash recovery twrp-3.3.1-3-NX629J-mauronofrio.img
# and now twrp was installed, reboot with command below
# now we need to clean ROM installing
adb reboot recovery
# now on android, you can see twrp menu
# go to Wipe > Advanced Wipe > check all of thing in there
# check Dalvik/Art Cache
# check Cache
# check System
# check Vendor
# check Data
# check Internal Storage
# and "Swipe to Wipe" dont do reboot here!!! please dont do
# now push ROM zip again in twrp,
adb push NX629J-update.zip /
# if it cannot mount or said read only file system
# this step if error only !!
adb shell
# you will goin to android sh, run command mount
mount -o rw,remount /
exit
# you will goin to your shell again, do push zip again
adb push NX629J-update.zip /
# after your push now you need to enable read access again on /
adb shell
mount -o ro,remount /
exit
# now on twrp, go to Install > go to / directory, just pick "up a level" until its gone,
# and on / folder you will see NX629J-update.zip,
# and do install on NX629J-update.zip > "swipe to install"
# it will fill data on that we are wiping off
# then push Magisk.zip
adb push Magisk.zip /
# now on twrp, go to Install > go to / directory > install Magisk.zip
# then push
adb push NikGapps-core-arm64-10-20210424-signed.zip /
adb push nikgapps.config /
# now on twrp, go to Install > go to / directory > pick NikGapps-core-arm64-10-20210424-signed.zip
# > "swipe to install" > "wipe dalvik cache/cache"
# reboot to system now
adb reboot
# after you see launcher screen, do install Magisk.apk
adb install Magisk.apk
# popup will be shown on screen, and click "OK"
Now you get clean Install CN ROM with all working feature
- Disable cover detection on Screen
Settings > Lockscreen, Launcher and Theme > Toggle disable "pocket mode"
- Disable Recommeded Application
Settings > Lockscreen, Launcher and Theme > Launcher Setting > Toggle disable ["Fancy Icon", "show the first screen negative", "Recommended Applications"]
Done.
If anything mistakes happen let me know ya.
Not Working :
- Google services Push Notif on Lock Screen, bug hunter @Faonee
[Guide][Stable] How to clean Install CN ROM + TWRP + ROOT + GAPPS on our Nubia Red Magic 3
Hello guys, welcome again to my thread this thread will be my tutorial too for reminder how to reinstalling my Nubia Red Magic 3 i will tell you how to do step by step guide how to do clean Install : Requirement : - ADB installed, check with...
forum.xda-developers.com
Credit :
@Secretcow
[Guide] Unlocking Red Magic 3's Bootloader
Requirements: - To Unlock Bootloader On Nubia Red Magic 3 (NX629J), you will need a computer. - Charge the Nubia Red Magic to at least 50%. - You need a USB cable to connect your phone to PC. (Users reported better luck with usb 2.0 port vs usb...
forum.xda-developers.com
[Guide] Flashing TWRP & Granting Root Access (Magisk Systemless) - Red Magic 3
Use this guide to root for now for global rom: https://forum.xda-developers.com/red-magic-3/how-to/red-magic-3-root-guide-t3933148 Requirements: - Unlocked Bootloader On Nubia Red Magic 3 (NX629J)...
forum.xda-developers.com
Well sure I'm goona do this...well I'm waiting for the new update 红魔3/红魔3S Android R V5.14 coming soon.....
NubiaNinja said:
Well sure I'm goona do this...well I'm waiting for the new update 红魔3/红魔3S Android R V5.14 coming soon.....
Click to expand...
Click to collapse
I am not sure v5.14 is already stable yet, cause if we see v3 and v2, there is a lot of changes until it stable.
And there must plenty degraded performance instead of android 10. Cause I got AnTuTu only 450k on Android R on Rom v5.1x
never00miss said:
I am not sure v5.14 is already stable yet, cause if we see v3 and v2, there is a lot of changes until it stable.
And there must plenty degraded performance instead of android 10. Cause I got AnTuTu only 450k on Android R on Rom v5.1x
Click to expand...
Click to collapse
Yes @never00miss you were are saying right I think I'm only one who think observed feel the best update was of CN V3.34 Android 10 OF R3,but mine was something 3.04/3.09/3.11 OF R3S I can't remember ??but sure it was android 10 bruh ur saying right...review I'm playing pubg mobile for almost 12 hrs continuosly on this update V3.34 played till almost next update comes.With 90fps game mode on fan speed normal I remember I don't feel any issue lagging, shuttering or any kind of fps down and sometimes I recording too my gameplays making short clips of engaging on fights..well no problem BUT only problem I face was Render in game heavy for a bit of moment then I decided I have to upgraded to Android 11 I think so game needed but this is the time I upgraded by OTA means phone update push the new one V5.11 which was failed version of Android 11 full of bugs I used for some days then I can't play pubg mobile not running game launcher malfunctioning screen flickers and many bugs nevermind I make my mind to return back to android 10 well I think I have to put the 3.34 zip to internal storage like simple way of reboot to recovery by inbuilt recovery wipe/data/cache boom I started installing zip lol who knows the Android 11 new policy added anti-rollback...system Lol DEVICE BRICKEDDDDDD!This is Nubia fail! At that moment I knew I f_____up!
Wait for 1-2 week dead phone....since whole Chinese community of Nubia Redmagic3/3S Flooded and crying in Chinese forum then the GOD ENTERS THE CHAT "SCARLETT GLASS" POSTED SOMETHING A RECOVERY TOOL Then the issue solved TWRP flashed since then I rooted checking gsi roms and new updates V5.11 Rebrushed and rightnow I'm on V5.13 but truely I'm saying my honestly review I don't like ANDROID 11 I can't play for long periods maximum 3-4hours pubg heating so much lagging and shuttering occurs! Device heat so much exceed sometimes 50 degrees lol I don't want to lost my precious hands I don't have girlfriend yet! Lol..... I'm afraid to play for long time!
GO FOR V3.34 PEOPLES WHO LOOK.....THIS POST WELL people this is the #Antutu Score of my Android 11 CN V5.13 NUBIA REDMAGIC 3S Well this score is due to SD 855+ I think so so...never mind YOU CAN SEE THE DIFFERENCE SCORE OF R3 AND R3S CPU AN D GPU R3 WINS....
R3S Has more scored but R3 have some stability...so V3.34 wins! Even Chinese forum people confirm V3.34 was best!
note: I can't remember which version I was running on android 10 I forgot 3.04/3.09/3.11??
sorry..on my RM3S but android 10
This works on both version of RM3 right?
NubiaNinja said:
Yes @never00miss you were are saying right I think I'm only one who think observed feel the best update was of CN V3.34 Android 10 OF R3,but mine was something 3.04/3.09/3.11 OF R3S I can't remember ??but sure it was android 10 bruh ur saying right...review I'm playing pubg mobile for almost 12 hrs continuosly on this update V3.34 played till almost next update comes.With 90fps game mode on fan speed normal I remember I don't feel any issue lagging, shuttering or any kind of fps down and sometimes I recording too my gameplays making short clips of engaging on fights..well no problem BUT only problem I face was Render in game heavy for a bit of moment then I decided I have to upgraded to Android 11 I think so game needed but this is the time I upgraded by OTA means phone update push the new one V5.11 which was failed version of Android 11 full of bugs I used for some days then I can't play pubg mobile not running game launcher malfunctioning screen flickers and many bugs nevermind I make my mind to return back to android 10 well I think I have to put the 3.34 zip to internal storage like simple way of reboot to recovery by inbuilt recovery wipe/data/cache boom I started installing zip lol who knows the Android 11 new policy added anti-rollback...system Lol DEVICE BRICKEDDDDDD!This is Nubia fail! At that moment I knew I f_____up!
Wait for 1-2 week dead phone....since whole Chinese community of Nubia Redmagic3/3S Flooded and crying in Chinese forum then the GOD ENTERS THE CHAT "SCARLETT GLASS" POSTED SOMETHING A RECOVERY TOOL Then the issue solved TWRP flashed since then I rooted checking gsi roms and new updates V5.11 Rebrushed and rightnow I'm on V5.13 but truely I'm saying my honestly review I don't like ANDROID 11 I can't play for long periods maximum 3-4hours pubg heating so much lagging and shuttering occurs! Device heat so much exceed sometimes 50 degrees lol I don't want to lost my precious hands I don't have girlfriend yet! Lol..... I'm afraid to play for long time!
GO FOR V3.34 PEOPLES WHO LOOK.....THIS POST WELL people this is the #Antutu Score of my Android 11 CN V5.13 NUBIA REDMAGIC 3S Well this score is due to SD 855+ I think so so...never mind YOU CAN SEE THE DIFFERENCE SCORE OF R3 AND R3S CPU AN D GPU R3 WINS....
R3S Has more scored but R3 have some stability...so V3.34 wins! Even Chinese forum people confirm V3.34 was best!
note: I can't remember which version I was running on android 10 I forgot 3.04/3.09/3.11??
sorry..on my RM3S but android 10
Click to expand...
Click to collapse
No, you got it wrong on AnTuTu version, you are run on v9 AnTuTu that on my device it will get score on 588k, on you are on 536k
You can see the results on my thread, in this thread I am using v5.13
[OVERCLOCK] GPU overclocking | Upgrade your Red Magic 3 to Red Magic 3s | Unleash the Beast
Before do all of this tutorial, Please keep in mind, that if you are dont have basic on Unix System dont do this!! i am buy this device just for gaming only, and i am buy secondhand on 20 April 2021. Goals : for overclock and unleash all inside...
forum.xda-developers.com
Faonee said:
This works on both version of RM3 right?
Click to expand...
Click to collapse
Yup, correct, both RM3 and RM3s works very well
never00miss said:
No, you got it wrong on AnTuTu version, you are run on v9 AnTuTu that on my device it will get score on 588k, on you are on 536k
You can see the results on my thread, in this thread I am using v5.13
[OVERCLOCK] GPU overclocking | Upgrade your Red Magic 3 to Red Magic 3s | Unleash the Beast
Before do all of this tutorial, Please keep in mind, that if you are dont have basic on Unix System dont do this!! i am buy this device just for gaming only, and i am buy secondhand on 20 April 2021. Goals : for overclock and unleash all inside...
forum.xda-developers.com
Yup, correct, both RM3 and RM3s works very well
Click to expand...
Click to collapse
never00miss said:
No, you got it wrong on AnTuTu version, you are run on v9 AnTuTu that on my device it will get score on 588k, on you are on 536k
You can see the results on my thread, in this thread I am using v5.13
[OVERCLOCK] GPU overclocking | Upgrade your Red Magic 3 to Red Magic 3s | Unleash the Beast
Before do all of this tutorial, Please keep in mind, that if you are dont have basic on Unix System dont do this!! i am buy this device just for gaming only, and i am buy secondhand on 20 April 2021. Goals : for overclock and unleash all inside...
forum.xda-developers.com
Yup, correct, both RM3 and RM3s works very well
Click to expand...
Click to collapse
Yes, I looked at the thread carefully but you haven't mentioned that we RM3S users can also apply this method...for overclock well I have to try it first...lol I think that thread is only for RM3 users... Sorry. Yeah V9 Antutu was score is damnn soo good.... Lesss goooo.....
NubiaNinja said:
Yes, I looked at the thread carefully but you haven't mentioned that we RM3S users can also apply this method...for overclock well I have to try it first...lol I think that thread is only for RM3 users... Sorry. Yeah V9 Antutu was score is damnn soo good.... Lesss goooo.....
Click to expand...
Click to collapse
Cause konabess process is unpacking binary on boot.img and re-compiling again, and boot.img it's same on all CN ROM that working on both devices RM3 and RM3s
I've installed everything succesfully. Only one thing thats bugging me that app notification doesn't show up on the lockscreen. I've tried disabling and enabling lockscreen notification but still not showing.
Faonee said:
I've installed everything succesfully. Only one thing thats bugging me that app notification doesn't show up on the lockscreen. I've tried disabling and enabling lockscreen notification but still not showing
Click to expand...
Click to collapse
ZTE have their own SDK for showing push notification info on their lock screen, and not all of apps support this lock screen info and integrate ZTE notification SDK.
So this problem depends on developer of apps, or ZTE must develop to allow all notification showing in locks screen and allow Google play services to show notification on lock Screen, * this is impossible yet cause of china vs us regulations for integrating gapps.
You can go on notification, Settings > Notification and status Bar > Notification Management > System, a lot of apps provided by CN ROM is supported by showing notif on lock screen. But in third party apps is not showing advanced feature to show notif on lock screen
*For reminder who's people is installing CN ROM, google services SDK feature like push notification (fcm) Or anything relate will not supported by apps in CN ROM it self. if you wanna working push notification and supported by system apps, you need to install from ZTE appcenter
never00miss said:
ZTE have their own SDK for showing push notification info on their lock screen, and not all of apps support this lock screen info and integrate ZTE notification SDK.
So this problem depends on developer of apps, or ZTE must develop to allow all notification showing in locks screen and allow Google play services to show notification on lock Screen, * this is impossible yet cause of china vs us regulations for integrating gapps.
You can go on notification, Settings > Notification and status Bar > Notification Management > System, a lot of apps provided by CN ROM is supported by showing notif on lock screen. But in third party apps is not showing advanced feature to show notif on lock screen
*For reminder who's people is installing CN ROM, google services SDK feature like push notification (fcm) Or anything relate will not supported by apps in CN ROM it self. if you wanna working push notification and supported by system apps, you need to install from ZTE appcenter
Click to expand...
Click to collapse
Thanks for the reply. Well that sucks. Need to get used to it somehow Haha.
Can you please write a guide to install android 11? I know it got bugs but I want to try it once atleast
souma_rox said:
Can you please write a guide to install android 11? I know it got bugs but I want to try it once atleast
Click to expand...
Click to collapse
Same as this tutorial "maybe", cause a lot of update on ZTE CN ROM flashable via TWRP.
You just need to change from v3.3x zip to v5.1x zip and flash on TWRP.
And what's said by @mauronofrio that TWRP only works again Chinese bootloader, so its "maybe" possible to flash CN ROM via twrp
Adb comand doesn't work for me.
Amuror3z said:
Adb comand doesn't work for me.
Click to expand...
Click to collapse
whut?? you need to make sure your adb installed well bruh.
Can we use the ok google hotword in the CN rom?
souma_rox said:
Can we use the ok google hotword in the CN rom?
Click to expand...
Click to collapse
You need to install full pack of nikgapps to get google assistant
I'm not sure what I'm doing wrong. I got Magisk to work and I have the rom up and running, but google play store doesn't seem to work. Which version exactly do I need to flash?
hidelater said:
I'm not sure what I'm doing wrong. I got Magisk to work and I have the rom up and running, but google play store doesn't seem to work. Which version exactly do I need to flash?
Click to expand...
Click to collapse
NIK GAPPS NikGapps-core-arm64-10-20210424-signed.zip
heya, nice guide.
just wanted to notify you that if you want to install the 3.34 cn rom / global rom from inside twrp, you might get a zip error.
to fix this, simply delete compatibility.zip from inside the NX629J-update.zip
under linux you can do this simply with "zip -d NX629J-update.zip compatibility.zip".
unpacking/repacking the zip is not advised
edit: seems this is only a thing if you try to flash from android 11 (v5.14) to android 10 (v3.34)
oh and the "adb reboot recovery" command (after flashing twrp) wont work since you are in fastboot mode during that step, "fastboot reboot recovery" might work

Question Lenovo TB-J606F 210420, missing developer option after USB debug mode enabled

Lenovo TB-J606F 210420, missing developer option after USB debug mode enabled
I was updated least ROM to TB-J606F_S120144_210420_ROM.
But i found developer option was missed.
I wish to use fastboot command to change power on/off mode for my car.
BTW, Lenovo Pad does not have offline ROM for upgrade/download, included previous version... seems support not enough
Franky_Chu said:
Lenovo TB-J606F 210420, missing developer option after USB debug mode enabled
I was updated least ROM to TB-J606F_S120144_210420_ROM.
But i found developer option was missed.
I wish to use fastboot command to change power on/off mode for my car.
BTW, Lenovo Pad does not have offline ROM for upgrade/download, included previous version... seems support not enough
Click to expand...
Click to collapse
did u try
setting ==> Move down to the System ==> About tablet ==> Find the Build number and tap on it several times till the "You are now a developer!" message appear.
Same version here. Dev options working just fine also with USB debug on.
Franky_Chu said:
BTW, Lenovo Pad does not have offline ROM for upgrade/download, included previous version...
Click to expand...
Click to collapse
Look this: https://mirrors.lolinet.com/firmware/lenovo/Tab_P11/TB-J606F/
is it possible to install lineage 17 0r 18 on lenovo TB-j606F?

Categories

Resources