Huawei AI life app - Huawei Mate 20 X Themes, Apps, and Mods

Hello XDA community. I hope I'm posting this in the right community. Does anyone have the APK version number of Huawei AI life that features the category Health which supports the Lebooo toothbrush and a desktop lamp? I made it a mistake and deleted the app and now when I reinstall I don't see that supported category. Thanks

Just thought I would follow up, if you change your phone's region it will unlock additional features in the AI life app. I set my Mare 20x to United Kingdom AI life reveals more items that can be added to the account like the toothbrush, table led lamp, additional Wi-Fi routers.

Related

[APP] My first android app. What do you think?

Hello,
Put my first android app on play store yesterday.
Its a simple loan calculator. There are many of these already, but as I was doing this as a learning project i put most effort in to focus on UI/UX features that I couldn't find done well (or at all) in existing apps. Namely, custom value entry screens, seekbar data entry, and monthly scheduling via view group allowing modifications to each entry.
Don't think I'll ever be rich off it, but I did learn a lot of about Android UI programming in process of making
What do you think?
Can't post html here as new, but you can find in playstore by searching for --> ginberryfarm loan
Cheers
dillop said:
Hello,
Put my first android app on play store yesterday.
Its a simple loan calculator. There are many of these already, but as I was doing this as a learning project i put most effort in to focus on UI/UX features that I couldn't find done well (or at all) in existing apps. Namely, custom value entry screens, seekbar data entry, and monthly scheduling via view group allowing modifications to each entry.
Don't think I'll ever be rich off it, but I did learn a lot of about Android UI programming in process of making
What do you think?
Can't post html here as new, but you can find in playstore by searching for --> ginberryfarm loan
Cheers
Click to expand...
Click to collapse
can you post urls now? i'd love to see it
I think text could be a little bigger besides that good work
Link To App Here
Yeah, was trying to make everything fit on screen without scrolling where possible, but ended up with tiny text. Will try to improve on next update.
Thanks for feedback.

About the use of accessibility service in Greenify

Like many other developers, I also received the 30-days deadline warning email from Google Play team about the potential "misuse" of accessibility service in Greenify.
As the very first developer who introduced this trick of "misusing" accessibility to achieve UI automation years ago, I'm very proud that many more creative tool apps followed this approach to enable fantastic functionality beyond the imagination of the creator of Android, without root. It's a miracle bred from the openness and flexibility of Android.
Unfortunately, the supervisor of the dominant app market is now declaring its right of final interpretation, to judge the proper use of Android API and claim that this whole idea is unacceptable. At this point, I feel I have to say something.
Why accessibility service?
As we all know, root is the ultimate playground of super users in the Android community. But it also has its inconvenience and grey side, so I decided to make Greenify work for users with non-root device. I had been experimenting with many approaches for this purpose in almost the whole year 2013. Finally I found the magic of UI automation driven by accessibility service. With this approach, many more users now enjoy the improved battery life and smoothness brought by Greenify.
I know that accessibility service is not a perfect solution, considering the overall UI performance degradation involved (explained below). So I never gave up seeking alternative approaches ever since, (many of which might also be considered API "misusing" in strict speaking) but still no better approach found. If Android could provide any alternative solution, I would never prefer accessibility service in the first place.
The Good
Accessibility service is so powerful, that I have to admit it's some kind of Pandora's box.
With accessibility, developers could not only help people with disabled abilities, but also greatly benefit the general users with wonderful use cases, including:
• Remote assistant via touch interaction, without root. (seems like no such apps yet?)
• Automate the tedious operations inside not-well-designed apps, even possibly driven by Tasker or IFTTT, without root.
• Programatically trigger global actions (e.g. Back, Home).
• Overlay the whole screen including the notification shade on Android O.
• ……
I even wrote a small app with accessibility service to "fix" the bottom navigation bar of my wife's Moto X Style, whose touch screen is not reading touches any more in bottommost rows of pixels.
The Bad
With such power, accessibility service is also becoming the trending target of malware, endangering average users world-wide. A typical malware could deceive user to enable its accessibility service and then perform many dangerous actions without user consent, including gaining other sensitive privileges.
Together with screen overlay, this could even hide from average user's observation, effectively making it a seductive approach, thus highly dangerous in the wild.
The Ugly
The dangers above may not be a thread to advanced users, but the overall UI lag caused by accessibility service could be a real hurt.
Android delivers accessibility events to active accessibility service in two phases. Events are first generated in the current interacting app and immediately sent to system process, then dispatched to separate accessibility services, each in its own process.
If no accessibility services enabled, both phases are shutdown, thus no performance affection at all. If at least one accessibility service is enabled, the first phase is turned on, in full power, no matter which types of events are interested (declared by accessibility service). The second phase is taking that into consideration and only delivers the interested events to each accessibility service.
The performance lag comes mostly out of the first phase because some types of accessibility events are so heavy, considering how frequently they are triggered. For example, TYPE_WINDOW_CONTENT_CHANGED is generated and sent every tiny bit of UI content changes and TYPE_VIEW_SCROLLED is generated and sent every pixel your finger is moved across during scrolling, even if no accessibility services are interested in them.
Sounds crazy? Unfortunately that's the current situation. Although Android O took a step to address that, the situation is still not changed fundamentally. Maybe in Google's view, accessibility service is not intended for general users, so performance optimization is never in the priority.
How is Greenify doing
Performance is always Greenify's priority since it’s one of the purposes defining Greenify. So I took all the possibilities to improve that in the past years, even greatly pulled-back by Android system itself.
First of all, Greenify declares no interest of events at all at most of the time and only declares minimal interest of events (all are trivial to generate) and specific target (system settings app) required during the short period of on-going hibernation operation. This is implemented by dynamic registration, cutting the cost of the second phase to almost zero.
Due to the inefficient implementation in Android system, the first phase is still the bottleneck of UI performance. After a long time of trial and failure, I finally managed to eliminate that cost, in a tricky way. With necessary permission granted via ADB, Greenify only enables its accessibility service during the hibernation operation and disable it immediately afterwards. That means, if no other accessibility service enabled, you will have no performance problem of accessibility service at all while still enjoy the power of Greenify.
With above optimization, Greenify limited the events it could receive to the minimal, thus also effectively keeps the privacy of users in safety. I'm planning to bring this optimization to broader users who has little knowledge about ADB, and even to other apps with accessibility service hopefully.
My Concern
Accessibility service is a yard full of potential creativity and magic. It should never be a Pandora's Box if Android itself implement it with caution in the first place. I understand the complexity and historical reasons that lead to the current situation, but feel sorry and sad about how Google deals with this situation, by banishing popular tool apps. Will that make Android users more secure? I highly doubt.
I don't know if Google Play team represents the atitude of Android team at Google. If so, it will then be the breaking day for all Android developers, when Google starts to use its power to judge the "proper use" of Android API, even if it's not used by malware.
Will it come a day that the use of screen overlay besides showing information will be banned?
Will it come a day that the use of content provider not for providing data will be banned?
Will it come a day that the use of internal APIs will be banned?
oasisfeng said:
Like many other developers, I also received the 30-days deadline warning email from Google Play team about the potential "misuse" of accessibility service in Greenify.
As the very first developer who introduced this trick of "misusing" accessibility to achieve UI automation years ago, I'm very proud that many more creative tool apps followed this approach to enable fantastic functionality beyond the imagination of the creator of Android, without root. It's a miracle bred from the openness and flexibility of Android.
Unfortunately, the supervisor of the dominant app market is now declaring its right of final interpretation, to judge the proper use of Android API and claim that this whole idea is unacceptable. At this point, I feel I have to say something.
Why accessibility service?
As we all know, root is the ultimate playground of super users in the Android community. But it also has its inconvenience and grey side, so I decided to make Greenify work for users with non-root device. I had been experimenting with many approaches for this purpose in almost the whole year 2013. Finally I found the magic of UI automation driven by accessibility service. With this approach, many more users now enjoy the improved battery life and smoothness brought by Greenify.
I know that accessibility service is not a perfect solution, considering the overall UI performance degradation involved (explained below). So I never gave up seeking alternative approaches ever since, (many of which might also be considered API "misusing" in strict speaking) but still no better approach found. If Android could provide any alternative solution, I would never prefer accessibility service in the first place.
The Good
Accessibility service is so powerful, that I have to admit it's some kind of Pandora's box.
With accessibility, developers could not only help people with disabled abilities, but also greatly benefit the general users with wonderful use cases, including:
• Remote assistant via touch interaction, without root. (seems like no such apps yet?)
• Automate the tedious operations inside not-well-designed apps, even possibly driven by Tasker or IFTTT, without root.
• Programatically trigger global actions (e.g. Back, Home).
• Overlay the whole screen including the notification shade on Android O.
• ……
I even wrote a small app with accessibility service to "fix" the bottom navigation bar of my wife's Moto X Style, whose touch screen is not reading touches any more in bottommost rows of pixels.
The Bad
With such power, accessibility service is also becoming the trending target of malware, endangering average users world-wide. A typical malware could deceive user to enable its accessibility service and then perform many dangerous actions without user consent, including gaining other sensitive privileges.
Together with screen overlay, this could even hide from average user's observation, effectively making it a seductive approach, thus highly dangerous in the wild.
The Ugly
The dangers above may not be a thread to advanced users, but the overall UI lag caused by accessibility service could be a real hurt.
Android delivers accessibility events to active accessibility service in two phases. Events are first generated in the current interacting app and immediately sent to system process, then dispatched to separate accessibility services, each in its own process.
If no accessibility services enabled, both phases are shutdown, thus no performance affection at all. If at least one accessibility service is enabled, the first phase is turned on, in full power, no matter which types of events are interested (declared by accessibility service). The second phase is taking that into consideration and only delivers the interested events to each accessibility service.
The performance lag comes mostly out of the first phase because some types of accessibility events are so heavy, considering how frequently they are triggered. For example, TYPE_WINDOW_CONTENT_CHANGED is generated and sent every tiny bit of UI content changes and TYPE_VIEW_SCROLLED is generated and sent every pixel your finger is moved across during scrolling, even if no accessibility services are interested in them.
Sounds crazy? Unfortunately that's the current situation. Although Android O took a step to address that, the situation is still not changed fundamentally. Maybe in Google's view, accessibility service is not intended for general users, so performance optimization is never in the priority.
How is Greenify doing
Performance is always Greenify's priority since it’s one of the purposes defining Greenify. So I took all the possibilities to improve that in the past years, even greatly pulled-back by Android system itself.
First of all, Greenify declares no interest of events at all at most of the time and only declares minimal interest of events (all are trivial to generate) and specific target (system settings app) required during the short period of on-going hibernation operation. This is implemented by dynamic registration, cutting the cost of the second phase to almost zero.
Due to the inefficient implementation in Android system, the first phase is still the bottleneck of UI performance. After a long time of trial and failure, I finally managed to eliminate that cost, in a tricky way. With necessary permission granted via ADB, Greenify only enables its accessibility service during the hibernation operation and disable it immediately afterwards. That means, if no other accessibility service enabled, you will have no performance problem of accessibility service at all while still enjoy the power of Greenify.
With above optimization, Greenify limited the events it could receive to the minimal, thus also effectively keeps the privacy of users in safety. I'm planning to bring this optimization to broader users who has little knowledge about ADB, and even to other apps with accessibility service hopefully.
My Concern
Accessibility service is a yard full of potential creativity and magic. It should never be a Pandora's Box if Android itself implement it with caution in the first place. I understand the complexity and historical reasons that lead to the current situation, but feel sorry and sad about how Google deals with this situation, by banishing popular tool apps. Will that make Android users more secure? I highly doubt.
I don't know if Google Play team represents the atitude of Android team at Google. If so, it will then be the breaking day for all Android developers, when Google starts to use its power to judge the "proper use" of Android API, even if it's not used by malware.
Will it come a day that the use of screen overlay besides showing information will be banned?
Will it come a day that the use of content provider not for providing data will be banned?
Will it come a day that the use of internal APIs will be banned?
Click to expand...
Click to collapse
Well thanks for all you've done for the Android community!
Perhaps you and many other devs should just pull away from Google and switch to a different market like FDroid.
Google has done this sort of thing in the past, like with SCR Pro (screen recording software with internal audio support) because it changed SELinux Policy. If Google loses their cut money, maybe they would rethink that decision. Personally if I was Google, I'd just add a "Potential Security Issue" or a "Modifies Critical Security Settings" indicator to apps on the Play Store that use the Accessibility Services or change SELinux Policy, or other security related settings. Give the users the option of what they choose or not choose to run on their phones! They already have some sort of a system in place that already does this with the "Play Protect" system. Slowly but surely, Android is becoming more like iOS with less freedom.
Interesting update to original article on XDA
https://www.xda-developers.com/google-threatening-removal-accessibility-services-play-store/
"Update: LastPass has just responded to this news and states that there will be “no immediate impact” for their Android apps. Whether or not this means that other applications will be given leniency remains to be seen."
Accessibility Service options
If I may ask -- what are you going to do? Are you going to pre-emptively unpublish the app before the 30 day limit is up? Are you going to try to reach out to Google and ask them to clarify whether there is any changes / clarifications? (LastPass implies they have gotten some kind of assurance, but they don't directly state that). Or, are you going to try to get as compliant as possible (put the appropriate language in the appropriate places), and hope for the best?
As far as I'm concerned your app is one of the few mission critical apps in the android ecosystem. So I can only hope that this can be resolved amicably.
I think this change is aimed solely at Substratum, as I have heard (not confirmed) than in Android 8.1 without root/unlocking and only using accessibility services, OMS can be exploited for theming. So Google is using a shotgun to kill all apps using this service rather than narrow their focus.
@oasisfeng
An insightful, deliberate and extremely well written post! ?
Sent from my SM-G955W ??
I think its time of the developers make a big migration of the apps to the XDA store to save the lagacy of the -7.0
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
divineBliss said:
Interesting update to original article on XDA
https://www.xda-developers.com/google-threatening-removal-accessibility-services-play-store/
"Update: LastPass has just responded to this news and states that there will be “no immediate impact” for their Android apps. Whether or not this means that other applications will be given leniency remains to be seen."
Click to expand...
Click to collapse
LastPass and Chrome enjoyed a cozy relationship in the past. That said I'm almost surprised at the news given Google could easily incorporate similar functionality into Android. Maybe Google and LogMeIn have something going on the side (new rumor...lol).
As much as i like to sympathize with developers using Accessibility to improve functionality of Android, I can't.
Because in last couple of months i have seen many crappy apps (cleaners n all) also start asking for same permission, and average user don't really understand or even care to read what impact or access they are giving and more than 95% of Android user falls in this category. We at XDA or other nerdy site don't like this fact but it's bare truth.
And from Google perspective, They can't monitor each and every App for eternity that which one is using this permission for good and which one isn't. So hammer of Banning all of it seems only solution for now on their part. especially considering Accessibility service was never meant to use for improving "Device Functionality" (Button Mapper, Battery Saver) it was always meant for "helping hand" in case normal functionally can't be used, not as "Replacement".
Also in my personal option, i think this ban is more due to App developers are trying to bypass each and every thing device manufacturers put (Bexby & Assistant Button) than apps trying to help with routine task (LastPass, Greenify).
Though they may not say explicitly OEM are not happy with their excursive feature are ruined by apps using accessibility as bypass and they (including Google in this case) can force Play Store to make restriction on this. (whether it's is Good practice or not is entire different topic so don't dwell into that debate in replies)
So in conclusion, Till Google come up with better solution (and i think they will, People working there are not fools they understand good that this access can do for Android as whole) , banning seems fair to me because security & stability of 95% users comes above 5% demanding modification & features.
Nerdy will always find a way but it's extremely difficultly to help understand average user why their phone suddenly start behaving abnormally
and that's what Google & OEM face daily.
jineshpatel30 said:
As much as i like to sympathize with developers using Accessibility to improve functionality of Android, I can't.
Because in last couple of months i have seen many crappy apps (cleaners n all) also start asking for same permission, and average user don't really understand or even care to read what impact or access they are giving and more than 95% of Android user falls in this category. We at XDA or other nerdy site don't like this fact but it's bare truth.
And from Google perspective, They can't monitor each and every App for eternity that which one is using this permission for good and which one isn't. So hammer of Banning all of it seems only solution for now on their part. especially considering Accessibility service was never meant to use for improving "Device Functionality" (Button Mapper, Battery Saver) it was always meant for "helping hand" in case normal functionally can't be used, not as "Replacement".
Also in my personal option, i think this ban is more due to App developers are trying to bypass each and every thing device manufacturers put (Bexby & Assistant Button) than apps trying to help with routine task (LastPass, Greenify).
Though they may not say explicitly OEM are not happy with their excursive feature are ruined by apps using accessibility as bypass and they (including Google in this case) can force Play Store to make restriction on this. (whether it's is Good practice or not is entire different topic so don't dwell into that debate in replies)
So in conclusion, Till Google come up with better solution (and i think they will, People working there are not fools they understand good that this access can do for Android as whole) , banning seems fair to me because security & stability of 95% users comes above 5% demanding modification & features.
Nerdy will always find a way but it's extremely difficultly to help understand average user why their phone suddenly start behaving abnormally
and that's what Google & OEM face daily.
Click to expand...
Click to collapse
Actually Google has fairly simple way to provide a solution, for example, Play services API to provide similar functionality with refined security and proper restriction. The new SMS verification API is a good example for app to avoid requesting SMS permission. Fairly speaking, SMS too was not designed for verification purpose.
They did nothing for a long time, but rush to ban all these apps in just 30 days. I think they just don't care that much about advanced user like the old days when Android was competing with iOS fiercely.
I’m the developer of Battery Overlay Percent. Not one of the big apps out there but it does got 500,000 downloads and about 30,000 active users.
I use accessibility services for hiding overlay when user pull status bar or on later release to resolve overlay breaking permission.
I’m quite sad with Google closing down on legitimate use cases. Personally from an open source OS we now live in a world of 2 pretty closed mobile environments.
And who’s collecting most data? Play Services of course.
Hope there will be a shift from this centerlized dark state we’re in.
oasisfeng said:
Actually Google has fairly simple way to provide a solution, for example, Play services API to provide similar functionality with refined security and proper restriction. The new SMS verification API is a good example for app to avoid requesting SMS permission. Fairly speaking, SMS too was not designed for verification purpose.
Click to expand...
Click to collapse
I thought something similar and i still think they will implement it but not before 30day timeline.
They did nothing for a long time, but rush to ban all these apps in just 30 days. I think they just don't care that much about advanced user like the old days when Android was competing with iOS fiercely.
Click to expand...
Click to collapse
True that. When you have 90% of market you don't need to expand it any more you just need to control it.
I don't mean to sound like I'm supporting them, but this what people do in general, when they have control on almost entire market.
Luckily for now (and unlike with ios) Android can still and probaly can always exist without the Google Play Store and Google Play Services and thats still a big win over ios! And as much as I hate this news, this is something I think will ultimately lead advanced users and advanced developers to become less dependant upon Google Play Store and Google Play Services.... and for users/devs like us, thats actually a good thing!
Maybe now Google Play Store will finally get some real competition!! Google has certainly with their actions have now got a significant chunk of users and devs properly motivated to look or create healthy alternatives for app licensing and license management on Android, thats for sure and to also kick it off with a healthly sample of some of the most prized apps android has ever seen, yikes!! Greenify is amazing but Tasker too; bigger yikes!!!
cantenna said:
Luckily for now (and unlike with ios) Android can still and probaly can always exist without the Google Play Store and Google Play Services and thats still a big win over ios! And as much as I hate this news, this is something I think will ultimately lead advanced users and advanced developers to become less dependant upon Google Play Store and Google Play Services.... and for users/devs like us, thats actually a good thing!
Maybe now Google Play Store will finally get some real competition!! Google has certainly with their actions have now got a significant chunk of users and devs properly motivated to look or create healthy alternatives for app licensing and license management on Android, thats for sure and to also kick it off with a healthly sample of some of the most prized apps android has ever seen, yikes!! Greenify is amazing but Tasker too; bigger yikes!!!
Click to expand...
Click to collapse
Exactly.
We need to stand our ground.
I have a feeling that alternate app stores are about to see a huge boost in users. Google is going to sorely regret their decisions.
betatest3 said:
Exactly.
We need to stand our ground.
I have a feeling that alternate app stores are about to see a huge boost in users. Google is going to sorely regret their decisions.
Click to expand...
Click to collapse
I admire your optimistic attitude - But... Alphabet is a Juggernaut and if it suits them - They'd probably just buy any potential problem ?
Sent from my SM-G955W ??
shaggyskunk said:
I admire your optimistic attitude - But... Alphabet is a Juggernaut and if it suits them - They'd probably just buy any potential problem ?
Click to expand...
Click to collapse
Not to mention the relatively small number of individuals that will be adversely impacted when all is said and done. Bigger players (eg: LastPass) will likely receive some form of dispensation. Niche tools like Greenify might take a hit but that is not where the revenue stream resides. Google ain't catering to the Android enthusiast community.
shaggyskunk said:
I admire your optimistic attitude - But... Alphabet is a Juggernaut and if it suits them - They'd probably just buy any potential problem ?
Click to expand...
Click to collapse
I dont think they'll be buying the amazon app store any time soon.
but to the point of the other user you quoted, you'll likely see the accessibility needing market move to another app store.
cantenna said:
I dont think they'll be buying the amazon app store any time soon.
but to the point of the other user you quoted, you'll likely see the accessibility needing market move to another app store.
Click to expand...
Click to collapse
Sure. There are a handful of reputable alternative app stores that cater to small communities that dare to venture off the beaten path. Niche market; don't think Google is worried. Nor is it likely Amazon will cater to Android enthusiasts.
If Alphabet/Google is serious about reining in potential abuses look for further adjustments in the successor to Android 8.
Can you on XDA Dev put an parallel market on the XDA Labs with PayPal account with less taxes (good for all) to maintaining and update webpage to conventional user going fu*k up the Google to the apps then will not survive on the Google rules on the market?
Put and good design market to the conventional use on XDA please.
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
---------- Post added at 05:31 PM ---------- Previous post was at 05:20 PM ----------
If you on XDA Labs put a inner market in the app with an Market safe with PayPal the developers can update the Apps on the Market with no acessibility but make an link to be updated on the XDA Labs with a plugin or a new full version, we can free more people with xposed solutions to defeat Google Policy
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
---------- Post added at 05:37 PM ---------- Previous post was at 05:31 PM ----------
Dev can update your apps and redirect to the external link in XDA Labs without violated google policy.
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
---------- Post added at 05:50 PM ---------- Previous post was at 05:37 PM ----------
XDA Labs have power with an safe and free market scanning and checking malicious new apps to be so respected and Xposed so popular then I believed on the futere ASUS and Samsung make the ZenFone Deluxes and Galaxy S with Xposed on stock on the most expansive "and free" devices, absolutely. Please think renew the XDA webpage and XDA Labs to defeat the enemies of the freedom on coding.
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
---------- Post added at 05:58 PM ---------- Previous post was at 05:50 PM ----------
Its time of the XDA webpage be more like Facebook on design and XDA Labs more like market on the safe and design to receive more redirected links to update and pay by apps on the XDA Labs with PayPal an Google Account if I like. Well if that happen we really will see if Google support free coding on open source.
Sent from my Asus ZenFone 3 Deluxe using XDA Labs
Interesting/digestible read; nothing new if you have been keeping up with the news on this topic.
https://www.howtogeek.com/333365/android-apps-using-accessibility-services-could-disappear/

Red Magic cn rom 3.25

Hi, just wanna share...
Red Devils gaming mobile phone V3.25
Software version: V3.25 (stable version)
Release Date: 2019-11-29
Version: V3.25
Size: 2.24GB
Update log:
Game space
Off screen hang up, save power and worry
Fingerprint mapping game buttons
Speeding up the network, eating chicken more freely
Featured game recommendations and discover a different world
Fully optimized for better gaming experience
Maverick Voice 3.0
Social, WeChat send red envelopes, scan, open payment code, etc.
Pay, Alipay opens the payment code, recharge fee, living payment, etc.
Travel, support booking air tickets, train tickets, find nearby food, etc.
System control, setting alarm, adding schedule, world clock
More voice interactions, on call, give you a smarter life experience
Smart Service Card
Quick Application Center
Provide convenient services when scenes such as life services, restaurants and shopping malls appear
Hot information, see more hot information at any time
Camera family, quickly open different camera functions
More services in one step
Other updates
New: Super screenshot supports recording system sound
Optimization: Complete rules after desktop icons are deleted
Optimization: Weather application vision, increase weather forecast entrance for the next 15 days
More than 100 more optimizations, just to bring a better experience
(Still did'nt try it yet)
Download LINK
It worked fine.
How about gapps?
ianseer said:
How about gapps?
Click to expand...
Click to collapse
Flashing magisk isn't possible. ROOT under 9.0 was possible i read somewhere in chinese nubia community but was unable to understand and download the file.
methuselah said:
Flashing magisk isn't possible. ROOT under 9.0 was possible i read somewhere in chinese nubia community but was unable to understand and download the file.
Click to expand...
Click to collapse
so you mean, Root and Gapps are can be done right?
ianseer said:
so you mean, Root and Gapps are can be done right?
Click to expand...
Click to collapse
Yeah. Afaik I can say someone achieved that. But not with official magisk. But with something modified. I really don't know where to find that.
Detailed instruction
ianseer said:
Hi, just wanna share...
Red Devils gaming mobile phone V3.25
Software version: V3.25 (stable version)
Release Date: 2019-11-29
Version: V3.25
Size: 2.24GB
Update log:
Game space
Off screen hang up, save power and worry
Fingerprint mapping game buttons
Speeding up the network, eating chicken more freely
Featured game recommendations and discover a different world
Fully optimized for better gaming experience
Maverick Voice 3.0
Social, WeChat send red envelopes, scan, open payment code, etc.
Pay, Alipay opens the payment code, recharge fee, living payment, etc.
Travel, support booking air tickets, train tickets, find nearby food, etc.
System control, setting alarm, adding schedule, world clock
More voice interactions, on call, give you a smarter life experience
Smart Service Card
Quick Application Center
Provide convenient services when scenes such as life services, restaurants and shopping malls appear
Hot information, see more hot information at any time
Camera family, quickly open different camera functions
More services in one step
Other updates
New: Super screenshot supports recording system sound
Optimization: Complete rules after desktop icons are deleted
Optimization: Weather application vision, increase weather forecast entrance for the next 15 days
More than 100 more optimizations, just to bring a better experience
(Still did'nt try it yet)
Download LINK
Click to expand...
Click to collapse
Hii,
Can i get detailed instruction for how to install this and before that does it even work ? Because i haven't found the update link in CN website.
I am using Red Magic 3 CN V2.45
kiranaxel said:
Hii,
Can i get detailed instruction for how to install this and before that does it even work ? Because i haven't found the update link in CN website.
I am using Red Magic 3 CN V2.45
Click to expand...
Click to collapse
This ROM belong to Nubia red magic phone. Not red magic phone 3
I want nubia game center apk

Huawei Launches a Range of New Products Powered by HarmonyOS 2

Huawei launched a range of smartphones, smart watches, and tablets powered by its new HarmonyOS 2 operating system today, including a new version of the HUAWEI Mate 40 Series and HUAWEI Mate X2, the HUAWEI WATCH 3 Series, and the HUAWEI MatePad Pro.
At today's event, Huawei also released the HUAWEI FreeBuds 4, its next-generation open-fit Active Noise Cancellation (ANC) wireless Bluetooth earbuds, and two high-end monitors, the HUAWEI MateView and the HUAWEI MateView GT. The company took this opportunity to announce that roughly 100 other Huawei devices – including both smartphones and tablets – will be upgraded to run on HarmonyOS 2, giving consumers access to a seamless intelligent experience across multiple devices in all different types of scenarios.
There are more smart devices in our lives than ever, but the experience they provide often isn't smart. Siloed systems tend to complicate interconnectivity and operations, which have ultimately led to a fragmented user experience.
HarmonyOS is designed to address this problem. As a next-generation operating system for smart devices, HarmonyOS provides a common language for different kinds of devices to connect and collaborate, providing users with a more convenient, smooth, and secure experience. It uses distributed technology to meet the varied needs of all types of different devices with a single system, enabling flexible deployment as needed. HarmonyOS also combines previously independent devices into a cohesive and holistic Super Device that integrates all hardware and resources to freely leverage the capabilities of its component devices based on the user's real-time needs. For developers, HarmonyOS allows cross-platform development and cross-device deployment of apps, making the development of apps across devices easier than ever before.
HUAWEI WATCH 3 Series: An independent smart assistant as powerful as your smartphone
Huawei's brand-new flagship smart watch, the HUAWEI WATCH 3 Series, redefines fashion on your wrist. Featuring a curved glass screen and 316L stainless steel case, this stylish watch comes complete with a brand-new 3D rotating crown that senses different levels of pressure and provides haptic feedback in response to user input, making the watch both comfortable to wear and easy to operate. The HUAWEI WATCH 3 Series also allows you to make and receive phone calls and listen to music using the same phone number and data plan as your smartphone.
The HUAWEI WATCH 3 Series runs on HarmonyOS 2, which allows it to integrate seamlessly with Huawei smartphones to serve as a multifunctional travel assistant. Functionality flows directly from your smartphone to your wrist, making all ride-hailing and flight information available at a glance. On the ride home from the airport, if you're taking public transit, both your watch and your phone will remind you when you're getting close to your final destination. You never have to worry about missing your stop again1.
The HUAWEI WATCH 3 Series also serves as a professional fitness & health manager that supports more than 100 workout modes. In addition to a broad range of healthcare support options, the watch can now monitor skin temperature with a new, high-precision temperature sensor2. It also supports fall detection and SOS functions so users can monitor and manage their health in real time.
The HUAWEI WATCH 3 Pro features an ultra-long battery life, which lasts five days in smart mode and 21 days in ultra-long battery life mode. The HUAWEI WATCH 3, in turn, has a battery life of three days in smart mode and 14 days in ultra-long battery life mode3.
{
"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"
}
HUAWEI MatePad Pro: A new productivity hub that breaks through boundaries for maximum creativity
The new HUAWEI MatePad Pro features a stunning 12.6-inch OLED FullView Display with a 90% screen-to-body ratio, the highest among all tablets currently available on the market. Every display comes with a ΔE color difference of less than 0.5 for incredibly high color accuracy, delivering a crisp, color-accurate picture that is on par with professional monitors. The HUAWEI MatePad Pro also has an ultra-high contrast ratio of 1,000,000:1, and supports a DCI-P3 color gamut.
Equipped with Kirin 9000 series chipsets, the HUAWEI MatePad Pro delivers incredible levels of performance. Supported by the distributed data management and task scheduling capabilities of HarmonyOS, the tablet can work together seamlessly with smartphones and PCs to double your productivity and creativity in different scenarios, whether you're in the office or at the drawing board.
The HUAWEI MatePad Pro also supports Multi-screen Collaboration with PCs4. The tablet can become a drawing board in Mirror mode and a monitor in Extend mode. It also supports cross-device file dragging and dropping, delivering a more efficient and collaborative multi-device experience.
The second-generation HUAWEI M-Pencil5 was unveiled together with the HUAWEI MatePad Pro. The new smart pen features a new platinum-coated nib for high-precision handwriting and ultra-low latency, accurately differentiating between 4,096 levels of force. The HUAWEI M-Pencil supports FreeScript, which converts handwriting in any input box into digital text in real time. In addition, intelligent interactions such as double-tap to switch, Instant Shape, and Instant Table make handwritten input more seamless and natural to fit your unique workflow.
An entirely new interactive experience: Easier to use and smarter than ever
Multi-device interaction with HarmonyOS makes working across multiple devices as simple as controlling one. The new Control Panel supports simple and intuitive connections through a drag-and-integrate feature that allows users to freely connect the devices they want based on specific scenarios.
For example, if you want to watch a movie at home late at night, all you have to do is open up the Control Panel and drag the smart screen icon to your phone icon, and the movie jumps directly from your phone to the TV. If you're wearing your HUAWEI FreeBuds 4, you can then drag the earphone icon to the phone icon, at which point the movie will play on your smart screen while rerouting its sound through your FreeBuds. This is just one example of the Super Device experience.
HarmonyOS 2's new Task Center allows apps to travel between different devices at will without installing them on each and every one, so that all functions and services are available whenever and wherever they're needed. On any device that's part of a Super Device system, you can see the tasks running on all other devices6. If you want a bigger display for mobile gaming, you can simply swipe up and hover to bring up the Overview Screen, and then transfer the game to your HUAWEI MatePad Pro to continue the fun.
The new HarmonyOS Home Screen is more streamlined and organized than ever. You can swipe up on apps to generate Service Widgets7 that display real-time, easy-to-access information or services without having to open the app itself. You can customize the size of the Service Widgets, tap apps and swipe up to display their widgets, and tap any vacant location on the home screen to hide them. Service Widgets can also be used to access Atomic Services, which can be easily called on and shared in the Service Center without the need to download or install anything, making it easier and more convenient to access functions like news aggregation8.
In terms of look-and-feel, the beauty of innovative interaction lies in the aesthetic details: The specially designed HarmonyOS Sans font and natural Gravitational Animations offer a consistent user experience across all HarmonyOS devices.
HUAWEI HiLink has been upgraded to HarmonyOS Connect to equip more non-Huawei devices with smart features. Smart home devices can be connected to your mobile phone with a single tap: Tap your phone against a Midea oven that supports HarmonyOS Connect and select a recipe to start preparing your meal instantly. Keep your leftovers safe for longer with Haier refrigerators that automatically adjust their temperature based on the type of food you're storing. And get the perfect soymilk for your body with Joyoung soymilk machines that can recommend recipes based on the data in your Health app9. When working together, these connections can turn your kitchen into a personal health coach.
Comprehensive performance gains for more privacy and security
HarmonyOS 2 runs even more smoothly than the last generation of EMUI. A HarmonyOS 2 phone can maintain read/write speeds similar to those of a new phone after 36 months of use, even with very little storage still available on the device.
HarmonyOS 2 keeps opened apps running in the background so that your tasks are always available where you left off. You can return to the last action or page on a given app even if you have dozens of other apps open. For example, if you were on a shopping app looking at a product, then you switched to another app to send your friend a message, and then opened up your browser to search for something else, you can now return to the last page you were browsing on your shopping app without a hitch. What's more, you can enjoy a longer battery life with a HarmonyOS 2-based device. After upgrading to HarmonyOS 2, the HUAWEI Mate 40 Pro can run Game for Peace for 5.1 hours straight10.
Huawei is committed to protecting user privacy and security. HarmonyOS inherits and further builds on the leading privacy and security technologies found in EMUI. Our core design principle is to ensure that only the right person can access the right data with the right device, ensuring the security of each access to each device, as well as the security of each act of storing, transmitting, and using data across all scenarios. When multi-device collaborative identity authentication is activated, users can only unlock their phones with a combination of facial recognition on their smartphone and a special check that ensures that the user's watch is the one that's connected to the phone.
In addition, HarmonyOS manages user data by category and protects devices by level, setting specific security thresholds for Super Devices. Only devices that meet strict security requirements can access data corresponding to their security level, making sure that users can make use of Multi-device Collaboration features with true peace of mind. HarmonyOS apps go through rigorous testing throughout development, release, installation, and use to ensure they deliver a secure experience in a clean ecosystem.
"We are surrounded by more and more smart devices these days, and are now in a world where all things are connected," said Richard Yu, Executive Director and CEO of Huawei's Consumer Business Group. "Every single one of us is a part of this fully connected world, as is every device. We look forward to working with more partners and developers to build a thriving HarmonyOS ecosystem and provide even better experiences, products, and services to our customers the world over."
To give more consumers the opportunity to experience the convenience, seamlessness, and security of HarmonyOS across all scenarios, nearly 100 Huawei devices are set to receive the HarmonyOS 2 upgrade in China, including the HUAWEI Mate 40 series, Mate 30 series, P40 series, Mate X2, nova 8 series, and MatePad Pro series. Users who want to try out the new OS sooner can submit an application at the Huawei Club or on the My Huawei app, or sign up for the HarmonyOS Experience Officer Program in any of Huawei's 66 offline experience stores in China11.
1.These features are provided through third-party apps, the availability of which varies from country to country. Please refer to Huawei's local official website.
2.Only supported after OTA programming upgrade. This feature is not designed to be a medical device, and is not intended to diagnose, treat, cure or prevent any disease. All data and measurements should be used for personal reference only.
3.All data is based on lab test results. The actual length of usage may vary depending on individual product differences, user habits, and environmental variables. For more details, see the HUAWEI WATCH 3 Series product page on Huawei's official website.
4.This function is only supported by certain files and apps between Huawei tablets powered by HarmonyOS 2 and above and Huawei laptops with a HUAWEI PC Manager version of 11.1 and above. If you have any questions about this function when buying or using Huawei products, please contact Huawei's customer service staff.
5.This function is only available on certain Huawei tablets powered by HarmonyOS 2 and above.
6.The Task Center is currently available only on certain Huawei smartphones and tablets powered by HarmonyOS 2 and above.
7.The apps and functions supported by Service Widgets are subject to actual situations. Certain apps only support Service Widgets after receiving an OTA upgrade.
8.This news function is provided by the Sina News app, and is currently only available on the Chinese mainland.
9.The products referred to here are the Midea S5 Mini steam oven and Joyoung Soymilk Machine DJ12R-K2S (HM). The Haier refrigerator is not yet commercially available.
10.Data from Huawei labs. Game version: 1.13.12. Game play settings: HUAWEI Mate 40 Pro with a screen refresh rate of 90 fps with smooth images displayed.
11.Offline experience is available in more than 30 cities across China. For more information, please visit https://consumer.huawei.com/en/ or the My Huawei app.
Original Link:https://consumer.huawei.com/en/press/news/2021/huawei-launches-new-products-powered-by-harmonyos-2/
does it provide mobile phone development?

[Q] NEEDING ADVICE on A.I App

Currently looking on how to create an AI from a picture
So picture to moving head features with speech is this possible
Any free app or website to goto?
Basic or or ask image questions
Thanks
Use Google Bard
Try Bard, an AI experiment by Google
Bard is your creative and helpful collaborator to supercharge your imagination, boost productivity, and bring ideas to life.
bard.google.com

Categories

Resources