LightBlog

mardi 2 février 2021

PSA: If you use NoxPlayer to play Android games on PC, you should probably reinstall it

NoxPlayer users beware. A hacker group has gained access to the Android emulator‘s server infrastructure and has pushed malware to a few users in Asia. Slovak security firm ESET recently discovered the attack, and it has advised affected NoxPlayer users to reinstall the emulator to remove the malware from their systems.

For the unaware, NoxPlayer is an Android emulator that is popular among gamers. The emulator is primarily used to run Android games on x86 PCs, and it’s developed by a Hong Kong-based company called BigNox. According to a recent report from ZDNet on the matter, a hacker group has gained access to one of the company’s official API (api.bignox.com) and file-hosting servers (res06.bignox.com). Using this access, the group has tampered with the download URL of NoxPlayer updates in the API server to deliver malware to users.

In a report regarding the attack, ESET reveals that it has identified three different malware families that are being “distributed from tailored malicious updates to select victims, with no sign of leveraging any financial gain, but rather surveillance-related capabilities.”

ESET further reveals that even though the attackers had access to BigNox servers since at least September 2020, they didn’t target all of the company’s users. Instead, the attackers focused on specific machines, suggesting that this was a highly-targeted attack looking to infect only a certain class of users. As of now, the malware-laden NoxPlayer updates have only been delivered to five victims located in Taiwan, Hong Kong, and Sri Lanka. However, ESET recommends all NoxPlayer users stay cautious. The security firm has laid out some instructions to help users figure out if their system has been compromised in its report.

In case users find an intrusion, they should reinstall NoxPlayer from clean media. Non-compromised users are advised not to download any updates until BigNox notifies that it has mitigated the threat. A BigNox spokesperson has told ZDNet that the company is working with ESET to investigate the breach further.

The post PSA: If you use NoxPlayer to play Android games on PC, you should probably reinstall it appeared first on xda-developers.



from xda-developers https://ift.tt/3oPH9Y4
via IFTTT

Android 11 makes Google Photos annoying to use for some, but there may be a fix

We have no way of knowing how many devices on the market run Android 11 since Google no longer publishes distribution statistics, but there are probably tens of millions now that companies like Xiaomi and Samsung have had time to push the update to many of their models. If your device runs Android 11 and you use Google Photos, there’s a chance that you’ve encountered a rather annoying change with the way the app handles image deletion and restoration. Instead of simply selecting the images and videos you want to delete, hitting the trash can icon, and then tapping the “move to trash” button, you’ll now have to tap through an extra prompt to give Google Photos permission to delete or restore your files.

For those of you who take lots of photos and videos, it may be annoying to have to grant Google Photos permission to delete or restore a file. And as pointed out by AndroidPolice, tapping an extra button isn’t the only issue you may have to deal with. If you use Google Photos on another device and want to edit or trash a file you uploaded from your phone running Android 11, the app may ask you to review “out-of-sync changes”. That can quickly get annoying if Google Photos keeps asking you to review changes you just made on another platform.


The extra step to delete or restore a file wasn’t required in Android 10 but is now required in Android 11 due to the enforcement of Scoped Storage. Before Scoped Storage, access to the entire external storage directory was managed by a single permission, making it hard for you to limit what apps can access your private documents, images, or videos. With Scoped Storage in place, Android limits how much access an app can have to sensitive files without explicit user consent. You can find more details on Scoped Storage in this article or look at Google’s graphic below for a summary of the changes.

Android 11 Scoped Storage summary

While they were busy restricting storage access in Android 11, Google was also improving existing APIs to improve the user experience. For example, apps targeting Android 11 can use the MediaStore API to trash a file rather than delete it. In order to move a file to trash, though, the app has to prompt the user to grant it write access. Since most of the images and videos you add to Google Photos from your phone came from a different app — such as the stock camera app — Photos has to ask for permission before it can move a file to or from the trash. However, Google Photos doesn’t ask for permission to trash files if you’re using a Pixel phone with Android 11 installed. It does, however, ask for permission on basically every other device running Android 11, including most Samsung, Xiaomi, OnePlus, and ASUS devices. What gives?

The reason is that the system gallery app is not subjected to Scoped Storage restrictions. That means the stock gallery app can open, edit, or delete images and videos without explicit permission. Google Photos is preset as the system gallery app on Pixel phones, but most OEMs preset their own gallery app instead. Furthermore, there’s no user-facing setting to change the system gallery app, not even in Android’s “default apps” screen. However, there is a hidden way to change the system gallery app, but there’s one big caveat: Only a system application can be set as the system gallery app. That means only phones that already have Google Photos pre-installed as a system app can take advantage of this trick.

Not a lot of phones meet this criterion, but based on our testing, we can confirm this works on most OnePlus and some ASUS phones. This method didn’t work on any of the Samsung phones we tested it on, and it also didn’t work on a Xiaomi Mi 10 Pro. If you have root access or are running a custom ROM, this method may work on your device after you systemize the Google Photos app, but we only tested this method on stock devices.

How to (maybe) make Google Photos the system gallery app

Credits go to Kieron Quinn (Quinny899 on the XDA Forums) for sharing this trick!

The first thing you’ll need to do is install ADB on your PC. We have an updated guide on how to do that here. Once you have ADB setup, enter the following command:

adb shell cmd role add-role-holder android.app.role.SYSTEM_GALLERY com.google.android.apps.photos

If you don’t see an error, then it probably worked! You can quickly verify it worked by taking a photo and then trying to delete it in Google Photos. Alternatively, you can run the following command:

adb shell dumpsys role

…and check to see if the “holder” of “android.app.role.SYSTEM_GALLERY” is “com.google.android.apps.photos” (the package name of Google Photos).

If your output matches the text highlighted in the red rectangle, then it worked.

What does this command do?

Android 10 added a new API called “Roles“. When an app has a certain role, it’s automatically granted access to certain permissions. For example, the SYSTEM_GALLERY role automatically grants an app “full read and write access to all image and video files on external storage, including access to location metadata.” The SYSTEM_GALLERY role can only be granted to system applications, and its default holder is defined by the Android configuration value “config_systemGallery.” As we explained earlier, most OEMs preset this value to the package name corresponding to their own gallery app. This value can’t be changed without either modifying the framework or installing an overlay, both of which require root access.

However, it is possible to add another app as a holder of the SYSTEM_GALLERY role, but only if that app is also a system app. This is possible on many OnePlus and some ASUS phones because these OEMs seemingly preinstalled Google Photos on the system-level rather than user-level. Because of this, the Google Photos app is eligible to hold the SYSTEM_GALLERY role, and we take advantage of Android’s hidden RoleManager shell interface to grant it access to permissions it normally can’t be granted. If you attempt to grant the SYSTEM_GALLERY role to a non-system app, you’ll see the following error in logcat:

E RoleControllerServiceImpl: Package does not qualify for the role, package: com.google.android.apps.photos, role: android.app.role.SYSTEM_GALLERY

Sadly, we haven’t found a way around this limitation, but if we do, we’ll share our method with the community. Of course, we would prefer that Google simply make the SYSTEM_GALLERY role user-definable rather than limited to the OEM’s choice.

The post Android 11 makes Google Photos annoying to use for some, but there may be a fix appeared first on xda-developers.



from xda-developers https://ift.tt/3arWAjZ
via IFTTT

Microsoft’s OneDrive on Android gets a new home screen and 8K video support

Microsoft has announced a new update for OneDrive on Android, including a revamped home screen experience. The new features should appear in OneDrive for Android version 6.21 and above.

Microsoft said that if you have a personal OneDrive account, you will now see three main sections in the updated home screen: accessed files, files downloaded for offline use, and “On This Day” photos. OneDrive for work and school will see recent files, shared libraries, and offline files. OneDrive on Android previously showed a root view of your files, which you can still navigate to by tapping the Files tab.

Meanwhile, OneDrive on Android is also rolling out improved support for 8K video. If you own a Samsung device, you’ve always had the opportunity to upload 8K video with no loss or compression. Starting this month, OneDrive will support playback of Samsung 8K videos from the Galaxy S20 series and Galaxy S21 series.

If you want to store 8K video in OneDrive, you first need to enable 8K video from your device’s camera settings. You can either upload 8K video to OneDrive manually or you can connect your Samsung Gallery app to Microsoft’s service.

Microsoft also said that OneDrive for Android will allow Samsung owners to playback Motion Photos. Similar to 8K support, OneDrive has always offered the ability to store Motion Photos, but not play them back. This new update enables that feature. Additionally, you can also easily share Samsung Motion Photos with other OneDrive users, which they can playback in the Android app or on OneDrive.com.

The updated home experience is also available on iOS. However, OneDrive for iOS does not support Samsung Motion Photos playback. If you don’t have a OneDrive account, the service offers 5GB of storage for free, or you can upgrade to 100GB for $1.99 per month.

Microsoft OneDrive (Free+, Google Play) →

The post Microsoft’s OneDrive on Android gets a new home screen and 8K video support appeared first on xda-developers.



from xda-developers https://ift.tt/3tiq5NE
via IFTTT

LG’s Virtoo app syncs your Android phone to your Windows PC

Among all the services that let you sync your Android phone with your Windows PC, Microsoft’s Your Phone companion app stands out for its simplicity, ease-of-use and pretty decent integration with Windows OS. With Your Phone, you can sync app notifications, make and receive phone calls, reply to text messages and access your photo library straight from your PC. If you have a compatible Samsung, the app offers even more lucrative features, such as the ability to run multiple Android apps, cross-device copy and paste, and the ability to drag and drop files between your PC and phone. LG has now come up with a similar companion app for its laptop range called Virtoo by LG

Virtoo by LG is a companion app for LG laptops and LG devices (via MSPoweruser), though overall support is wider than just these two parameters. The app appears to be a reworked version of the Dell Mobile Connect app, developed by Screenovate Technologies LTD, rather than made from scratch.

Similar to Microsoft’s Your Phone, Virtoo by LG works over Bluetooth connection and can mirror app notifications, make and receive calls, and reply to texts. It also lets you mirror your smartphone screen and access your phone’s media content, both of these features are not supported by Your Phone yet.

Virtoo by LG - Receive notifications Virtoo by LG - Screen mirroring Virtoo by LG - Reply to texts

The Virtoo by LG requires an LG laptop or PC running Windows 10 (10134.0 or higher) and an LG device running Android 10 or iOS device. LG says some models may not support the service but it doesn’t provide a complete list of supported devices either. If you want to try out the Virtoo app on your LG laptop/PC, download the Android client from the link below and the PC client from here — iOS users can get the app from here.

Virtoo by LG (Free, Google Play) →

Although the Virtoo by LG doesn’t appear to be feature-rich, it does have few advantages over Microsoft’s companion app, namely, the screen mirroring feature and the ability to access media content from your phone. Not to mention, it also has an iOS app, unlike Your Phone which only supports Android.

The post LG’s Virtoo app syncs your Android phone to your Windows PC appeared first on xda-developers.



from xda-developers https://ift.tt/39HfvI4
via IFTTT

LG’s Virtoo app syncs your Android phone to your Windows PC

Among all the services that let you sync your Android phone with your Windows PC, Microsoft’s Your Phone companion app stands out for its simplicity, ease-of-use and pretty decent integration with Windows OS. With Your Phone, you can sync app notifications, make and receive phone calls, reply to text messages and access your photo library straight from your PC. If you have a compatible Samsung, the app offers even more lucrative features, such as the ability to run multiple Android apps, cross-device copy and paste, and the ability to drag and drop files between your PC and phone. LG has now come up with a similar companion app for its laptop range called Virtoo by LG

Virtoo by LG is a companion app for LG laptops and LG devices (via MSPoweruser), though overall support is wider than just these two parameters. The app appears to be a reworked version of the Dell Mobile Connect app, developed by Screenovate Technologies LTD, rather than made from scratch.

Similar to Microsoft’s Your Phone, Virtoo by LG works over Bluetooth connection and can mirror app notifications, make and receive calls, and reply to texts. It also lets you mirror your smartphone screen and access your phone’s media content, both of these features are not supported by Your Phone yet.

Virtoo by LG - Receive notifications Virtoo by LG - Screen mirroring Virtoo by LG - Reply to texts

The Virtoo by LG requires an LG laptop or PC running Windows 10 (10134.0 or higher) and an LG device running Android 10 or iOS device. LG says some models may not support the service but it doesn’t provide a complete list of supported devices either. If you want to try out the Virtoo app on your LG laptop/PC, download the Android client from the link below and the PC client from here — iOS users can get the app from here.

Virtoo by LG (Free, Google Play) →

Although the Virtoo by LG doesn’t appear to be feature-rich, it does have few advantages over Microsoft’s companion app, namely, the screen mirroring feature and the ability to access media content from your phone. Not to mention, it also has an iOS app, unlike Your Phone which only supports Android.

The post LG’s Virtoo app syncs your Android phone to your Windows PC appeared first on xda-developers.



from xda-developers https://ift.tt/39HfvI4
via IFTTT

Best Cheap Android Phones in February 2021: Google, Motorola, Samsung, OnePlus & More

2021 is just a month old and we’ve already seen some good news — phone prices should be lowering a bit as a general trend over the year. We saw this with Xiaomi and Samsung’s latest flagships being priced lower than their 2020 counterparts. If flagship phone prices go down — that means budget phone prices will too.

If you’re on the market for a phone in February 2021 and your budget is tight, let this guide help you out. If you have more to spend, then check out our guide to the best Android phones you can buy right now!

These are the best Budget Android Phones:

Best overall: Google Pixel 4a

Google Pixel 4a

Okay, so the Google Pixel 4a doesn’t have the most features, the flashiest look, or the most cutting-edge hardware of other phones on this list, but it still wins the “Best Overall” category because of two things: software and camera. The Pixel 4a is a pure Google phone, so its version of Android is the cleanest, most up-to-date, and will get support the longest. And while it doesn’t have the focal length versatility of more premium phones, the main camera here is every bit as good as the Pixel 5’s, which means it’s every bit as good as all the other flagships on the market too. This says something, considering that the phone is a fraction of that cost.

Despite its modest pricing, the Pixel 4a has a flagship-level screen-to-body aspect ratio and a large battery that will last all day. Sure, the plastic build and only black color option leave it looking a bit drab, and this particular model doesn’t support 5G, but this is a $350 phone with a photography experience and software experience that beats not just everything else on this list, but even phones that cost three times as much.

    Google Pixel 4a
    It's not the most exciting looking smartphone, but the Google Pixel 4a is the best budget smartphone. Flagship-level camera, guaranteed the cleanest and latest version of Android, and improved battery life over the Pixel 4 makes this an easy recommendation.

Best endurance: Moto G Power

Moto G Power

Thanks to the absence of Chinese budget brands such as Redmi and Realme in the USA, Motorola has enjoyed a relatively unrivaled run as a top option for reasonable budget Android phones, and the Moto G Power continues that trend. For around $250, you get a 6.4-inch screen with decently thin bezels and a large battery 5,000 mAh battery. The processor (Snapdragon 665), RAM (4GB), and camera performances fall short of other phones on this list, but they’re all still serviceable. The lack of NFC support could be a dealbreaker for those who use Google Pay, however.

On the software front, Motorola’s software is about as close to the Pixel 4a’s clean Android experience as you can get, aside from some additional Moto software features like arguably the best Always-On Display on the market. Overall, the Moto G Power is a worthy option for those who value battery life and clean software above all else.

    Moto G Power
    Don't stress about battery life with the Moto G Power -- its 5,000 mAh battery will surely power you through the day. Sure, the RAM and processor are not the greatest, but its low price tag and clean Moto software make the whole package worth it.

Best for Samsung fans: Samsung Galaxy A51

Samsung Galaxy A71 5G launches in the US this week for $599

The benefit of buying a mid-tier phone from a top brand like Samsung is that it has the resources to pass down premium components. Case in point: the $400 Galaxy A51 sports a gorgeous 6.5-inch Samsung AMOLED panel with the trademark vibrant, punchy colors Samsung’s known for, and it managed to cram a 32-megapixel selfie camera into a tiny hole-punch cut-out that barely leaves a mark.

It’s also got a sizable 4,000 mAh battery, a capable 48-megapixel primary camera and a 12-megapixel ultrawide camera. However, the haptic engine on this is weak, and the Exynos 9611 chip lags behind the other SoCs on this list.

Still, for those loyal Samsung fans who love One UI but cannot stomach paying over $1,000 for a Galaxy S or Note flagship, the Galaxy A51 at least approximates the feeling of using a top Galaxy phone at 40% of the price.

    Samsung Galaxy A51
    With a gorgeous Samsung AMOLED screen and One UI, the Galaxy A51 is perfect for Samsung fans who don't want to spend so much on a phone. You also get 5G connectivity on the phone, which is a good positive if you plan to hold onto the phone for a few years.

Best newcomer: TCL 10L

TCL 10L tcl 10 pro

Best known for its televisions, TCL officially entered the Android space in 2020 with a $250 handset packed with an impressive 6.5-inch LCD screen.

Despite its plastic back, the construction of the phone is impressive, considering its price tag and newcomer status of TCL. But flip the phone around, and that screen shines — colors pop with rich details and is bright enough to be easily visible under direct sunlight.

The quad-camera system on the back houses a 48-megapixel primary shooter that produces good shots, but the other three lenses — an 8-megapixel ultrawide, and a pair of 2-megapixel macro and depth sensors — are average at best. The Snapdragon 665 processor and a clean and light UI make for a good combo.

Perhaps not surprising considering its company roots, the TCL 10L is one of the last phones left outside of Xiaomi to offer an IR blaster for easy controls of televisions and other appliances.

    TCL 10L
    With a bright and vibrant LCD screen and a versatile quad camera array, this is quite the solid smartphone debut for Chinese television brand TCL.

Best for stylus users: Moto G Stylus

 

If you want a phone with a stylus, but find the Galaxy Note series and Galaxy S21 Ultra to be too expensive, the Moto G Stylus is one of the very few viable options. This $300 phone may pack just 4GB RAM and does not support NFC, but you do get Snapdragon 665, a clean UI, a headphone jack, and of course, that stylus. It works mostly well — if you’re not comparing to the S-Pen of the Note 20 or Note 10 — there’s no Bluetooth connectivity nor palm rejection when the stylus tip touches the screen. Still, latency is relatively low, and the software adapts to the input well. For example, if you pull the stylus out from the bottom of the phone while the screen is off, the screen jumps to a dark notepad — just like the off-screen memo of the Note series.

The 4,000 mAh battery can also power this thing all day, the screen looks pretty nice, and you have a strong pair of stereo speakers. The cameras, however, are just decent.

    Moto G Stylus
    Who said the Galaxy Note is the only phone in town with a stylus? The Moto G Stylus, with its 6.4-inch near the all-screen front and a stylus of its own, is a great option for those who like to jot down notes or make the occasional sketch.

Best Android One device: Nokia 5.3

For those who want their software as light as possible, the Nokia 5.3 is a worthy option running Android One, a near-stock version of Android guaranteed to get timely Google software updates for at least two years.

You also get a 4,000 mAh battery, 6.5-inch 720 x 1600 screen (both large at this price range), and a reliable 13-megapixel primary camera. The 5-megapixel ultrawide camera and 3GB of RAM will probably leave you wanting, but at its $199 price, it’s hard to fault.

    Nokia 5.3
    One of the original big mobile phone brands is back with a $200 smartphone. None of the specs will pop off the spec sheet but its affordable price, near-stock Android software, and a 4,000 mAh battery give it plenty of appeal.

Best features and specs: OnePlus Nord N10

oneplus nord n10 5g product image

Last year, OnePlus released the OnePlus Nord, a mid-range phone with upper mid-tier specs, for the European market. For North Americans waiting their turn, they have the Nord N10, which is even cheaper at $299. The Nord N10 features a 6.49-inch FHD+ display with a 90Hz refresh rate, 6GB of RAM, 128GB of storage, and a 4,300mAh battery that supports OnePlus’ fast 30W charging.

Sure, the Snapdragon 690 processor here isn’t going to blow anyone’s socks off, but it’s pretty serviceable and it’s 5G ready. The main 64MP camera produces sharp and vibrant images, and there’s a decent ultra-wide lens as well. Oh, and you get a headphone jack too.

    OnePlus Nord N10 5G
    The OnePlus Nord N10 is a 5G device with a high-refresh display on a budget. The overall hardware package is modest, yes, but it will work out for average consumers on a tighter budget.

Best value (not sold in US): Poco X3 NFC

Here’s an open secret among Android fans: the US phone scene is relatively limited due to the fact that almost all Chinese brands do not sell stateside. If you’re willing to import, Xiaomi’s Poco X3 NFC has hands-down the best dollar-for-dollar value of any phone released in recent memory. Here’s what you get for a starting price of 199 euro ($234): a 6.7-inch 120Hz screen; a 5,160 mAh battery that can go two full days for all but the heaviest of users, the brand new Snapdragon 732G chip, and a capable quad-camera system headlined by a 64-megapixel main camera.

The display is just an LCD panel instead of the OLED seen in phones like the Google Pixel 4a OnePlus Nord, but it refreshes at 120Hz. The stereo speaker system and haptic engine are better than anything we’ve seen at this $200-ish price range too.

The caveat is, of course, the fact this phone doesn’t sell officially in the US, so there’s no guarantee it will work on all carriers, and importing will likely drive up the price by a bit.

    Poco X3 NFC
    If we're going by pure specs and bang-for-buck value, this is very hard to top: you get a 120Hz screen, 5,160 mAh battery, four useful cameras, and the first phone to run Snapdragon 732G at a very attractive price. But Xiaomi's UI is not everyone's cup of tea, and this also does not sell officially in North America, so you should check the bands to ensure carrier compatibility before importing one.

None of the phones listed here are going to be confused for premium flagships, but they are more than serviceable and offer a lot for the money. The OnePlus Nord N10 and the POCO X3 NFC, in our opinion, offer the best bang for your dollar. But photography lovers should go for the Pixel 4a.

The post Best Cheap Android Phones in February 2021: Google, Motorola, Samsung, OnePlus & More appeared first on xda-developers.



from xda-developers https://ift.tt/3cx3QLR
via IFTTT

Best Cheap Android Phones in February 2021: Google, Motorola, Samsung, OnePlus & More

2021 is just a month old and we’ve already seen some good news — phone prices should be lowering a bit as a general trend over the year. We saw this with Xiaomi and Samsung’s latest flagships being priced lower than their 2020 counterparts. If flagship phone prices go down — that means budget phone prices will too.

If you’re on the market for a phone in February 2021 and your budget is tight, let this guide help you out. If you have more to spend, then check out our guide to the best Android phones you can buy right now!

These are the best Budget Android Phones:

Best overall: Google Pixel 4a

Google Pixel 4a

Okay, so the Google Pixel 4a doesn’t have the most features, the flashiest look, or the most cutting-edge hardware of other phones on this list, but it still wins the “Best Overall” category because of two things: software and camera. The Pixel 4a is a pure Google phone, so its version of Android is the cleanest, most up-to-date, and will get support the longest. And while it doesn’t have the focal length versatility of more premium phones, the main camera here is every bit as good as the Pixel 5’s, which means it’s every bit as good as all the other flagships on the market too. This says something, considering that the phone is a fraction of that cost.

Despite its modest pricing, the Pixel 4a has a flagship-level screen-to-body aspect ratio and a large battery that will last all day. Sure, the plastic build and only black color option leave it looking a bit drab, and this particular model doesn’t support 5G, but this is a $350 phone with a photography experience and software experience that beats not just everything else on this list, but even phones that cost three times as much.

    Google Pixel 4a
    It's not the most exciting looking smartphone, but the Google Pixel 4a is the best budget smartphone. Flagship-level camera, guaranteed the cleanest and latest version of Android, and improved battery life over the Pixel 4 makes this an easy recommendation.

Best endurance: Moto G Power

Moto G Power

Thanks to the absence of Chinese budget brands such as Redmi and Realme in the USA, Motorola has enjoyed a relatively unrivaled run as a top option for reasonable budget Android phones, and the Moto G Power continues that trend. For around $250, you get a 6.4-inch screen with decently thin bezels and a large battery 5,000 mAh battery. The processor (Snapdragon 665), RAM (4GB), and camera performances fall short of other phones on this list, but they’re all still serviceable. The lack of NFC support could be a dealbreaker for those who use Google Pay, however.

On the software front, Motorola’s software is about as close to the Pixel 4a’s clean Android experience as you can get, aside from some additional Moto software features like arguably the best Always-On Display on the market. Overall, the Moto G Power is a worthy option for those who value battery life and clean software above all else.

    Moto G Power
    Don't stress about battery life with the Moto G Power -- its 5,000 mAh battery will surely power you through the day. Sure, the RAM and processor are not the greatest, but its low price tag and clean Moto software make the whole package worth it.

Best for Samsung fans: Samsung Galaxy A51

Samsung Galaxy A71 5G launches in the US this week for $599

The benefit of buying a mid-tier phone from a top brand like Samsung is that it has the resources to pass down premium components. Case in point: the $400 Galaxy A51 sports a gorgeous 6.5-inch Samsung AMOLED panel with the trademark vibrant, punchy colors Samsung’s known for, and it managed to cram a 32-megapixel selfie camera into a tiny hole-punch cut-out that barely leaves a mark.

It’s also got a sizable 4,000 mAh battery, a capable 48-megapixel primary camera and a 12-megapixel ultrawide camera. However, the haptic engine on this is weak, and the Exynos 9611 chip lags behind the other SoCs on this list.

Still, for those loyal Samsung fans who love One UI but cannot stomach paying over $1,000 for a Galaxy S or Note flagship, the Galaxy A51 at least approximates the feeling of using a top Galaxy phone at 40% of the price.

    Samsung Galaxy A51
    With a gorgeous Samsung AMOLED screen and One UI, the Galaxy A51 is perfect for Samsung fans who don't want to spend so much on a phone. You also get 5G connectivity on the phone, which is a good positive if you plan to hold onto the phone for a few years.

Best newcomer: TCL 10L

TCL 10L tcl 10 pro

Best known for its televisions, TCL officially entered the Android space in 2020 with a $250 handset packed with an impressive 6.5-inch LCD screen.

Despite its plastic back, the construction of the phone is impressive, considering its price tag and newcomer status of TCL. But flip the phone around, and that screen shines — colors pop with rich details and is bright enough to be easily visible under direct sunlight.

The quad-camera system on the back houses a 48-megapixel primary shooter that produces good shots, but the other three lenses — an 8-megapixel ultrawide, and a pair of 2-megapixel macro and depth sensors — are average at best. The Snapdragon 665 processor and a clean and light UI make for a good combo.

Perhaps not surprising considering its company roots, the TCL 10L is one of the last phones left outside of Xiaomi to offer an IR blaster for easy controls of televisions and other appliances.

    TCL 10L
    With a bright and vibrant LCD screen and a versatile quad camera array, this is quite the solid smartphone debut for Chinese television brand TCL.

Best for stylus users: Moto G Stylus

 

If you want a phone with a stylus, but find the Galaxy Note series and Galaxy S21 Ultra to be too expensive, the Moto G Stylus is one of the very few viable options. This $300 phone may pack just 4GB RAM and does not support NFC, but you do get Snapdragon 665, a clean UI, a headphone jack, and of course, that stylus. It works mostly well — if you’re not comparing to the S-Pen of the Note 20 or Note 10 — there’s no Bluetooth connectivity nor palm rejection when the stylus tip touches the screen. Still, latency is relatively low, and the software adapts to the input well. For example, if you pull the stylus out from the bottom of the phone while the screen is off, the screen jumps to a dark notepad — just like the off-screen memo of the Note series.

The 4,000 mAh battery can also power this thing all day, the screen looks pretty nice, and you have a strong pair of stereo speakers. The cameras, however, are just decent.

    Moto G Stylus
    Who said the Galaxy Note is the only phone in town with a stylus? The Moto G Stylus, with its 6.4-inch near the all-screen front and a stylus of its own, is a great option for those who like to jot down notes or make the occasional sketch.

Best Android One device: Nokia 5.3

For those who want their software as light as possible, the Nokia 5.3 is a worthy option running Android One, a near-stock version of Android guaranteed to get timely Google software updates for at least two years.

You also get a 4,000 mAh battery, 6.5-inch 720 x 1600 screen (both large at this price range), and a reliable 13-megapixel primary camera. The 5-megapixel ultrawide camera and 3GB of RAM will probably leave you wanting, but at its $199 price, it’s hard to fault.

    Nokia 5.3
    One of the original big mobile phone brands is back with a $200 smartphone. None of the specs will pop off the spec sheet but its affordable price, near-stock Android software, and a 4,000 mAh battery give it plenty of appeal.

Best features and specs: OnePlus Nord N10

oneplus nord n10 5g product image

Last year, OnePlus released the OnePlus Nord, a mid-range phone with upper mid-tier specs, for the European market. For North Americans waiting their turn, they have the Nord N10, which is even cheaper at $299. The Nord N10 features a 6.49-inch FHD+ display with a 90Hz refresh rate, 6GB of RAM, 128GB of storage, and a 4,300mAh battery that supports OnePlus’ fast 30W charging.

Sure, the Snapdragon 690 processor here isn’t going to blow anyone’s socks off, but it’s pretty serviceable and it’s 5G ready. The main 64MP camera produces sharp and vibrant images, and there’s a decent ultra-wide lens as well. Oh, and you get a headphone jack too.

    OnePlus Nord N10 5G
    The OnePlus Nord N10 is a 5G device with a high-refresh display on a budget. The overall hardware package is modest, yes, but it will work out for average consumers on a tighter budget.

Best value (not sold in US): Poco X3 NFC

Here’s an open secret among Android fans: the US phone scene is relatively limited due to the fact that almost all Chinese brands do not sell stateside. If you’re willing to import, Xiaomi’s Poco X3 NFC has hands-down the best dollar-for-dollar value of any phone released in recent memory. Here’s what you get for a starting price of 199 euro ($234): a 6.7-inch 120Hz screen; a 5,160 mAh battery that can go two full days for all but the heaviest of users, the brand new Snapdragon 732G chip, and a capable quad-camera system headlined by a 64-megapixel main camera.

The display is just an LCD panel instead of the OLED seen in phones like the Google Pixel 4a OnePlus Nord, but it refreshes at 120Hz. The stereo speaker system and haptic engine are better than anything we’ve seen at this $200-ish price range too.

The caveat is, of course, the fact this phone doesn’t sell officially in the US, so there’s no guarantee it will work on all carriers, and importing will likely drive up the price by a bit.

    Poco X3 NFC
    If we're going by pure specs and bang-for-buck value, this is very hard to top: you get a 120Hz screen, 5,160 mAh battery, four useful cameras, and the first phone to run Snapdragon 732G at a very attractive price. But Xiaomi's UI is not everyone's cup of tea, and this also does not sell officially in North America, so you should check the bands to ensure carrier compatibility before importing one.

None of the phones listed here are going to be confused for premium flagships, but they are more than serviceable and offer a lot for the money. The OnePlus Nord N10 and the POCO X3 NFC, in our opinion, offer the best bang for your dollar. But photography lovers should go for the Pixel 4a.

The post Best Cheap Android Phones in February 2021: Google, Motorola, Samsung, OnePlus & More appeared first on xda-developers.



from xda-developers https://ift.tt/3cx3QLR
via IFTTT