My Poco F3 is called "M2012K11AC" everywhere, which is - of course - the model name. But it is a bit annoying to have this name in all google apps and when i connect it to my PC. I'd prefer something like "Poco F3".
Can i rename it?
Unlock the bootloader. Then root it with magisk (using a modified boot.img) and then modify the build.prop file (https://www.droidviews.com/edit-build-prop-file-on-android/)
I have looked for it and the name "M2012K11AC" does not appear anywhere. Any ideas team? I used JRummy BuildProp Editor.
I can't find anything in build.prop too!
I'd also like to know, let me know if you've found a way to do it.
It's not a super big deal, but if I can change it without breaking the rom I will.
Nemix77 said:
I'd also like to know, let me know if you've found a way to do it.
It's not a super big deal, but if I can change it without breaking the rom I will.
Click to expand...
Click to collapse
Me as well. Hoping someone can help.
Related
Is it possible to change dpi on the latest Oxygen OS? I just bought this phone today coming from OnePlus One and cant seem to find any option...
SaneQ said:
Is it possible to change dpi on the latest Oxygen OS? I just bought this phone today coming from OnePlus One and cant seem to find any option...
Click to expand...
Click to collapse
No, its not available on Oxygen OS. You shod get it kn Nougat though
It's not an integrated feature, but you still can manually (or with an app) modify the build.prop file to change it. And that works in pretty much any ROM out there.
Sent from my OnePlus 3 using Tapatalk
SaneQ said:
Is it possible to change dpi on the latest Oxygen OS? I just bought this phone today coming from OnePlus One and cant seem to find any option...
Click to expand...
Click to collapse
Not sure if you are rooted if so this is an easy answer
If you are not rooted its also an easy answer and no need to start a thread simply google it "how to change dpi on android" or "how to change dpi on Oxygen OS"
The instructions will pop up and voila.... i use it all the time on my non rooted phones that I am unhappy with the dpi..... You're welcome
Release of OsloBridge v1.1.2 can be found here https://github.com/jcarletto27/magisk_module_motionsense_mod/releases
The purpose of this is to broadcast intents that Tasker can pick up as events. I plan on sending a PR to TopJohnWu once i hear back on some QA. Please update me here in this thread if you find any bugs! In my own testing I've found that the official apps like Pokemon wave hello and Headed South still function fine.
This module overwrites the built-in Bridge with a modified one that does not check for Googles signature on the requesting app, essentially letting anyone with knowledge of the bridge api to create an app to use MotionSense. My app which I'm calling OsloBridger (Oslo is the internal name for the MotionSense app) creates a foreground service that works even if the screen is off. I've not noticed any serious battery issues, but time will tell.
If you have issues please post here with the following and I'll do my best to help:
Device : (Pixel 4, Pixel 4XL)
Patch Date: (Oct,Nov,etc)
Are you Rooted with Magisk? : (Yes, No)
Other Modules Installed: (Systemless Hosts, edXposed, etc.)
Do you have Tasker installed ? (Yes, No)
Is "Allow External Access" checked in the Tasker Misc Preferences? (Yes, No)
When you start the service in OsloBridger what does it say in the Notification? (Reach, Flick Gestures Active)
Level of Tasker Experience ? (Novice, Experienced)
Also, please provide the task your trying to run. The steps to do that are Go to Tasks -> Long Press the Task you want to execute -> Click Three Dots in top right -> Export -> Description to Clipboard and paste it here
Update Nov 7, 2019 : I've updated the OsloBridger app to now allow the selection of specific tasks from within the app. No more setting up broadcast receivers in Tasker!
Update Nov 12, 2019: Added 2 new service intent filters to allow the starting and stopping of the Service without needing to use the Toggle intent. Updated the defaults to use what I've found works best (surprise! it's the same settings google uses for the builtin actions)
Advanced Users:
The app will still send those same broadcasts if you don't select a task in OsloBridger, so no changes for those setup already. I find this way to be more flexible because you can add multiple conditions to the event in Tasker, but I get that Tasker can have a huge learning curve.
Not sure if this will help, but I have used a magisk module to replace an apk in the product folder. Not sure if it's the same but the directory is /system/product/..….
I noticed in root explorer that the product directory in system is a shortcut to the one in the root directory
Btw, since you already digging around. Anyway to bypass the country restriction. I live so close to Mexico that it turns off every now and then.
It would be awesome if we can use Soli sensor with Tasker.
Actually, I've posted this suggestion on Tasker forum. and he, joaomgcd, also looking forward to it.
eg1122 said:
Not sure if this will help, but I have used a magisk module to replace an apk in the product folder. Not sure if it's the same but the directory is /system/product/..….
I noticed in root explorer that the product directory in system is a shortcut to the one in the root directory
Btw, since you already digging around. Anyway to bypass the country restriction. I live so close to Mexico that it turns off every now and then.
Click to expand...
Click to collapse
Thanks that might be exactly what I was looking for. In my digging I did find a country code in a preference file somewhere. I've also heard that it's restricted based on which service provider. I'll find the file and you can let me know if it works in your country.
ashergray said:
Thanks that might be exactly what I was looking for. In my digging I did find a country code in a preference file somewhere. I've also heard that it's restricted based on which service provider. I'll find the file and you can let me know if it works in your country.
Click to expand...
Click to collapse
eg1122 said:
Not sure if this will help, but I have used a magisk module to replace an apk in the product folder. Not sure if it's the same but the directory is /system/product/..….
I noticed in root explorer that the product directory in system is a shortcut to the one in the root directory
Btw, since you already digging around. Anyway to bypass the country restriction. I live so close to Mexico that it turns off every now and then.
Click to expand...
Click to collapse
Also looked into Motion Sense APK. Restriction is phone number country code based, can be bypassed. Also looks like its developers left setting to disable country checks at all. TO do that, you just need to change android setting 'pixel.oslo.allowed_override' to '1'. This way modified APK not needed.
I can't try this right now but if you want to check, then connect Pixel 4 with developer mode and execute command in adb shell:
Code:
adb shell setprop pixel.oslo.allowed_override 1
or
Code:
adb shell "setprop persist.pixel.oslo.allowed_override 1; setprop ctl.restart zygote"
or edit system/build.prop with some app
You need root to do this.
Eugnis said:
Also looked into Motion Sense APK. Restriction is phone number country code based, can be bypassed. Also looks like its developers left setting to disable country checks at all. TO do that, you just need to change android setting 'pixel.oslo.allowed_override' to '1' or 'true'. This way modified APK not needed.
I can't try this right now but if you want to check, then connect Pixel 4 with developer mode and execute command in adb shell:
Click to expand...
Click to collapse
i tried the first command, i'll let you know if it sticks
eg1122 said:
i tried the first command, i'll let you know if it sticks
Click to expand...
Click to collapse
Did the override work?
I am from Hong Kong and Google banned my region as well
chris111111 said:
Did the override work?
I am from Hong Kong and Google banned my region as well
Click to expand...
Click to collapse
Well, I live in the US but live so close to Mexico that I get signal from their carriers every now and then and it turns off. Has not turned off since I did the command
eg1122 said:
Well, I live in the US but live so close to Mexico that I get signal from their carriers every now and then and it turns off. Has not turned off since I did the command
Click to expand...
Click to collapse
So Glad to hear that! Gotta try it out when I get my phone
Eugnis said:
Also looked into Motion Sense APK. Restriction is phone number country code based, can be bypassed. Also looks like its developers left setting to disable country checks at all. TO do that, you just need to change android setting 'pixel.oslo.allowed_override' to '1' or 'true'. This way modified APK not needed.
I can't try this right now but if you want to check, then connect Pixel 4 with developer mode and execute command in adb shell:
Code:
adb shell setprop pixel.oslo.allowed_override true
or
Code:
adb shell "setprop persist.pixel.oslo.allowed_override true; setprop ctl.restart zygote"
or edit system/build.prop with some app
You need root to do this.
Click to expand...
Click to collapse
Thanks,According to your prompt, my friend has written the EDXPOSED module to open Motion Sense in any region.
Well ever since I ran the command, motion sense has not turned off
Quick update I've had success. I needed to disable the signature check and modify the bridge app. But I got a custom app seeing gestures.
ashergray said:
Quick update I've had success. I needed to disable the signature check and modify the bridge app. But I got a custom app seeing gestures.
Click to expand...
Click to collapse
Hey, can you DM me? I would love to learn more about your work.
[email protected] on Hangouts, @mrahmanXDA on Telegram, MishaalRahman#5289 on Discord.
ashergray said:
I've modified the Oslo Code [APK found in /product/priv-apps/OsloFeedback/OsloFeedback.apk] and added in some custom code to send intents for Tasker to pick up, but I can't over-write the file because Android 10 locks the /product folder.
I've tweeted at John to ask if Magisk can do this but I'm not sure. Does anyone have any experience with this? I'd really like to have custom actions for the Motion Sense Gestures.
If you can help I'll be happy to share my Module!
Click to expand...
Click to collapse
My Active Edge module modifies the SystemUIGoogle.apk to provide custom squeeze actions via Edge Sense Plus.
So yeah, you can build a magisk module to replace the file. You can check on my github how it works: https://github.com/Magisk-Modules-Repo/active_edge_system_mod/tree/Android10
I also want to inject some custom code, struggling a bit though, because I rely on logcats, because I don't own a pixel.
You hooked into handleContextHubMessageReceipt method in the FlickGestureSensor?
Any news on development? I'm not asking for eta Just curious about the progress as I'm quite disappointed by the actual use of this soli chip... It's useless atm atleast for me
Balino said:
Any news on development? I'm not asking for eta Just curious about the progress as I'm quite disappointed by the actual use of this soli chip... It's useless atm atleast for me
Click to expand...
Click to collapse
Just completed my initial release to github. I'll be sending a pull request to John once I get some feedback on how it's
https://github.com/jcarletto27/magisk_module_motionsense_mod
Well Done!?
i ll give it a try & send u feedback asap
Did this break face unlock for anyone else?
I've tried setting it up 6 times. Successfully saves face data but can't verify my face.
itylermartin said:
Did this break face unlock for anyone else?
I've tried setting it up 6 times. Successfully saves face data but can't verify my face.
Click to expand...
Click to collapse
Appreciate the feedback. Just checked with my device and can't replicate the issue. Can anyone else replicate this?
Edit: are you using the November Android update? I never tested for that
Yes I am. Tomorrow I'm going to do a fresh install see exactly what's causing the issue. Only modules I have installed are BusyBox, viper, sq lite, and this.
I turned face unlock off for the time being. Even if it does conflict with this mod it's worth it! Great work
The color OS is crap and non user friendly and I want to remove it .
Already flash to root and TWRP already
NO search Apps in default page, show all pic in telegram even set not to gallery.
Really suck the OS .. I have to replace all CN useless thing.
barrykfl said:
The color OS is crap and non user friendly and I want to remove it .
Already flash to root and TWRP already
NO search Apps in default page, show all pic in telegram even set not to gallery.
Really suck the OS .. I have to replace all CN useless thing.
Click to expand...
Click to collapse
When you root and install recovery, does the fingerprint work?
The global version is tolerable, but the chinese really makes it difficult. We need anything we can have even with no fingerprint and other.
Even can't change Launcher and default assistant and can't give any app device administration control???
Really hoping someone will get into this and works it out..
Has anyone else noticed this?
I'm on the XSA CSC running December security patch (OneUI 2.5) and it does not have the animation. I've also received reports that OneUI 3.0 still doesn't have the animation for some reason (from Reddit), and it seems like a strange omission to me considering the phone has the specs to be more than capable of it. If you are not sure what I mean, check this video:
https://www.reddit.com/r/galaxys10/comments/dz36e8
(screen recording taken from Galaxy S10 on OneUI 2.0)
Thanks
Is it a bug or did they decide just not to have it?
I'm using the OneUI 3.0 and don't have the animations... Samsung is kidding us with the S20 FE?
mxxcon said:
Is it a bug or did they decide just not to have it?
Click to expand...
Click to collapse
Seems like a bug to me, it doesn't make sense that they would choose not to include it as it's a fairly small thing and a whole range of devices have it including the "budget" S10e from last year.
FedoraMaster420 said:
Has anyone else noticed this?
I'm on the XSA CSC running December security patch (OneUI 2.5) and it does not have the animation. I've also received reports that OneUI 3.0 still doesn't have the animation for some reason (from Reddit), and it seems like a strange omission to me considering the phone has the specs to be more than capable of it. If you are not sure what I mean, check this video:
https://www.reddit.com/r/galaxys10/comments/dz36e8
(screen recording taken from Galaxy S10 on OneUI 2.0)
Thanks
Click to expand...
Click to collapse
Thats exacly my problem too. I don't think this is a bug, because it's very noticable... this was a problem in 2.5, And I am in one ui 3, and this is Still a problem.... I don't understand samsung....
Nothing new, Samsung has removed it from a couple of "lite" (or in this case, FE) variants. It can be added with root by editing a file in vendor called floating feature. Doubt Samsung would re-add it, but who knows.
Btw, I'm talking about the Note 10 Lite, it doesn't have it by default either.
ShaDisNX255 said:
Nothing new, Samsung has removed it from a couple of "lite" (or in this case, FE) variants. It can be added with root by editing a file in vendor called floating feature. Doubt Samsung would re-add it, but who knows.
Btw, I'm talking about the Note 10 Lite, it doesn't have it by default either.
Click to expand...
Click to collapse
What line would I need to add/edit? This will be good to know if I ever decide to root.
FedoraMaster420 said:
What line would I need to add/edit? This will be good to know if I ever decide to root.
Click to expand...
Click to collapse
I made my own little tutorial here: https://forum.xda-developers.com/t/samsung-galaxy-a71-working-mods.4173295/
But to jump straight into this edit in question, it's the following:
The floating_features.xml file in question can be located in system(root)/vendor/etc
Add AOD to lockscreen clock animation:
Note: This only works on OneUI 2.5, does not work on OneUI 2.1 and below for A71.
Search for the following line in floating_features:
Code:
<SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>
Add clocktransition in this line, like this:
<SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>aodversion=7,clearcoveroff,clocktransition</SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>
Save and reboot. Done, there will be an added animation from AOD to lockscreen clock.
ShaDisNX255 said:
I made my own little tutorial here: https://forum.xda-developers.com/t/samsung-galaxy-a71-working-mods.4173295/
But to jump straight into this edit in question, it's the following:
The floating_features.xml file in question can be located in system(root)/vendor/etc
Add AOD to lockscreen clock animation:
Note: This only works on OneUI 2.5, does not work on OneUI 2.1 and below for A71.
Search for the following line in floating_features:
Code:
<SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>
Add clocktransition in this line, like this:
<SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>aodversion=7,clearcoveroff,clocktransition</SEC_FLOATING_FEATURE_FRAMEWORK_CONFIG_AOD_ITEM>
Save and reboot. Done, there will be an added animation from AOD to lockscreen clock.
Click to expand...
Click to collapse
Nice thank you heaps for this!!! I'm just curious, is there any way to edit this file without root and retain Knox 0x0? I suppose not since it's a file located in vendor, but can't hurt to ask!
FedoraMaster420 said:
Nice thank you heaps for this!!! I'm just curious, is there any way to edit this file without root and retain Knox 0x0? I suppose not since it's a file located in vendor, but can't hurt to ask!
Click to expand...
Click to collapse
I've looked but so far I haven't seen that it's possible. Mainly because you can't mount system/vendor as read-write without root, even with adb. I personally don't know of a way.
ShaDisNX255 said:
I've looked but so far I haven't seen that it's possible. Mainly because you can't mount system/vendor as read-write without root, even with adb. I personally don't know of a way.
Click to expand...
Click to collapse
hi, i did everything you wrote, but i can't save the floating feature xml on my phone. I tried to edit it on my PC, but then when i pasted it to the correct folder replacing the old one, it just magically recovered to it's old version, not including my edited lines, without any error message... What can i do?
davie0430 said:
hi, i did everything you wrote, but i can't save the floating feature xml on my phone. I tried to edit it on my PC, but then when i pasted it to the correct folder replacing the old one, it just magically recovered to it's old version, not including my edited lines, without any error message... What can i do?
Click to expand...
Click to collapse
Oh, i'm using Root Browser, and when i tried to save the edit on that, It said "Error saving edit" or something like that... do i need a permission of some kind?
sorry for spamming. I found out the problem. I didn't know what rooting the phone is. Now i know, and im not in that level to take care of a rooted phone, I just wanted a cool animation
ShaDisNX255 said:
I've looked but so far I haven't seen that it's possible. Mainly because you can't mount system/vendor as read-write without root, even with adb. I personally don't know of a way.
Click to expand...
Click to collapse
Hi, I just had a thought come to me, would it be possible to modify the stock firmware file that is flashed in Odin (the AP .tar file) with the edited version of floating_feature.xml, stored in vendor.img? Would this flash successfully and maintain Knox 0x0? Or would it see the slightly modified AP file as a custom binary and thus void Knox?
FedoraMaster420 said:
Hi, I just had a thought come to me, would it be possible to modify the stock firmware file that is flashed in Odin (the AP .tar file) with the edited version of floating_feature.xml, stored in vendor.img? Would this flash successfully and maintain Knox 0x0? Or would it see the slightly modified AP file as a custom binary and thus void Knox?
Click to expand...
Click to collapse
Your second assessment is correct, just unpacking and repacking AP detects it as custom firmware and therefore would trip Knox.
This is a very weird thing in the sense that a Galaxy M31 (which is a very low-mid range phone) has that animation enabled and also it runs OneUI Core
gj4560 said:
Has anyone else noticed this?
I'm on the XSA CSC running December security patch (OneUI 2.5) and it does not have the animation. I've also received reports that OneUI 3.0 still doesn't have the animation for some reason (from Reddit), and it seems like a strange omission to me considering the phone has the specs to be more than capable of it. If you are not sure what I mean, check this video:
https://www.reddit.com/r/galaxys10/comments/dz36e8
(screen recording taken from Galaxy S10 on OneUI 2.0)
Thanks
Click to expand...
Click to collapse
123
Hi i rooted my Samsung Galaxy Z Fold 3 model (f926b) using twrp and flashed magisk 23
everything works find beside 1 feature im trying to hide magisk manager(change its name using a different bundle id)
but when i press hide magisk manager i type the name that i want to change too i press ok
but nothing happens i keep getting the original magisk app on the home screen and also the new magisk app with the name i choose appear but doesn't lunch nor work
can someone help
What specific model phone are you using? So far as we know, the 926B model is the only one able to be rooted. I say this because it can cause confusion, and a waterfall of owners asking how you rooted, when they can't root their model.
Save everyone a headache is my motive.
dirtybudha said:
What specific model phone are you using? So far as we know, the 926B model is the only one able to be rooted. I say this because it can cause confusion, and a waterfall of owners asking how you rooted, when they can't root their model.
Save everyone a headache is my motive.
Click to expand...
Click to collapse
Mine is f926b