portrait folded
12. 21:9 – S26U landscape, Fold8 landscape folded, Fold8U landscape folded
13. 9:16 – S26U portrait, Fold8 portrait folded, Fold8U portrait folded
14. 9:16 – S26U portrait, Fold8 portrait unfolded, Fold8U portrait unfolded
15. 9:16 – S26U portrait, Fold8 landscape folded, Fold8U landscape folded
https://redd.it/1v4wap9
@reddit_android
12. 21:9 – S26U landscape, Fold8 landscape folded, Fold8U landscape folded
13. 9:16 – S26U portrait, Fold8 portrait folded, Fold8U portrait folded
14. 9:16 – S26U portrait, Fold8 portrait unfolded, Fold8U portrait unfolded
15. 9:16 – S26U portrait, Fold8 landscape folded, Fold8U landscape folded
https://redd.it/1v4wap9
@reddit_android
Reddit
From the Android community on Reddit
Explore this post and more from the Android community
Smoother scrolling: How we halved scroll jank in Chrome on Android
https://blog.google/chromium/smoother-scrolling-how-we-halved-scroll-jank-in-chrome-on-android/
https://redd.it/1v4xfj4
@reddit_android
https://blog.google/chromium/smoother-scrolling-how-we-halved-scroll-jank-in-chrome-on-android/
https://redd.it/1v4xfj4
@reddit_android
Google
Smoother scrolling: How we halved scroll jank in Chrome on Android
Chrome halved scroll jank on Android by ensuring consistent input-to-frame delivery, preventing stale frames and jarring stutters.
Severe Battery Drain & Overheating on HyperOS (Redmi Note 13 Pro 4G / MediaTek). Root Cause Found: Infinite Loop in SatelliteController
PSA: I am posting this root cause analysis to document a severe flaw in the Android 14 / AOSP telephony framework implementation on MediaTek devices. I am not asking for tech support, but sharing the ADB logs and AOSP source code flaw for community awareness and developer visibility.
Device: Redmi Note 13 Pro 4G (MediaTek)
OS: HyperOS (Android 14) - Build 3.0.301.0.WNFEUXM
There is a severe logic bug in the telephony framework of the current HyperOS build. Using Mobile Data triggers an infinite event loop inside com.android.phone, locking the CPU at 140%+ usage and causing massive battery drain and thermal throttling. The device overheats, and the only temporary workaround is to toggle Airplane Mode (just turning off mobile data does nothing).
Using top -m 15, com.android.phone (PID 3173) consistently shows >140% CPU usage. The MediaTek RIL daemon (mtkfusionrild) is also constantly stressed.
By analyzing the radio buffer via logcat, I was able to pinpoint the exact root cause: the system is trying to register satellite modem listeners on a device that does not have satellite hardware.
The following block of code repeats in an infinite loop (around 30 times per second) as soon as mobile data connects:
07-24 00:15:24.708 3173 3173 D SatelliteController: Satellite for carrier is not supported.
07-24 00:15:24.709 3173 3173 D SatelliteController: registerForSatelliteModemStateChanged: add Listeners for ModemState
07-24 00:15:24.709 3173 3173 E SatelliteController: registerForSatelliteModemStateChanged: mSatelliteSessionController is not initialized yet
07-24 00:15:24.709 3173 3173 E SatelliteController: unregisterForModemStateChanged: mSatelliteSessionController is not initialized yet
07-24 00:15:24.709 3173 3173 D SatelliteController: unregisterForModemStateChanged: remove Listeners for ModemState
After digging deeper and cross-referencing with the AOSP source code and MediaTek vendor trees, it is clear this is an issue rooted in the telephony framework handling for Android 14 on MediaTek devices (this exact same INVALID_ARGUMENTS and mSatelliteSessionController loop has also been reproduced on Custom ROMs like crDroid for the Redmi Note 13 5G 'stone').
Looking at the AOSP source code (frameworks/opt/telephony/.../SatelliteController.java), the exception is correctly generated here:
.SatelliteError public int registerForSatelliteModemStateChanged(int subId,
@NonNull ISatelliteStateCallback callback) {
if (mSatelliteSessionController != null) {
mSatelliteSessionController.registerForSatelliteModemStateChanged(callback);
} else {
loge("registerForSatelliteModemStateChanged: mSatelliteSessionController is not initialized yet");
return SatelliteManager.SATELLITEINVALIDTELEPHONYSTATE;
}
return SatelliteManager.SATELLITEERRORNONE;
}
The SatelliteController correctly handles the lack of satellite hardware by returning SATELLITE\INVALID_TELEPHONY_STATE. The fatal flaw is in the higher-level network manager (likely the MediaTek RIL or the telephony framework's state machine). When it receives this error during a network transition (Wi-Fi to Mobile Data), it fails to handle the exception properly. Instead of aborting the satellite registration, it immediately retries the call in an unconditional infinite loop.
A simple conditional check (if (hasSatelliteHardware)) before attempting to register the listener in the network state change event within the calling process will completely resolve this battery drain issue for all MediaTek devices without satellite capabilities.
https://redd.it/1v4x3rd
@reddit_android
PSA: I am posting this root cause analysis to document a severe flaw in the Android 14 / AOSP telephony framework implementation on MediaTek devices. I am not asking for tech support, but sharing the ADB logs and AOSP source code flaw for community awareness and developer visibility.
Device: Redmi Note 13 Pro 4G (MediaTek)
OS: HyperOS (Android 14) - Build 3.0.301.0.WNFEUXM
There is a severe logic bug in the telephony framework of the current HyperOS build. Using Mobile Data triggers an infinite event loop inside com.android.phone, locking the CPU at 140%+ usage and causing massive battery drain and thermal throttling. The device overheats, and the only temporary workaround is to toggle Airplane Mode (just turning off mobile data does nothing).
Using top -m 15, com.android.phone (PID 3173) consistently shows >140% CPU usage. The MediaTek RIL daemon (mtkfusionrild) is also constantly stressed.
By analyzing the radio buffer via logcat, I was able to pinpoint the exact root cause: the system is trying to register satellite modem listeners on a device that does not have satellite hardware.
The following block of code repeats in an infinite loop (around 30 times per second) as soon as mobile data connects:
07-24 00:15:24.708 3173 3173 D SatelliteController: Satellite for carrier is not supported.
07-24 00:15:24.709 3173 3173 D SatelliteController: registerForSatelliteModemStateChanged: add Listeners for ModemState
07-24 00:15:24.709 3173 3173 E SatelliteController: registerForSatelliteModemStateChanged: mSatelliteSessionController is not initialized yet
07-24 00:15:24.709 3173 3173 E SatelliteController: unregisterForModemStateChanged: mSatelliteSessionController is not initialized yet
07-24 00:15:24.709 3173 3173 D SatelliteController: unregisterForModemStateChanged: remove Listeners for ModemState
After digging deeper and cross-referencing with the AOSP source code and MediaTek vendor trees, it is clear this is an issue rooted in the telephony framework handling for Android 14 on MediaTek devices (this exact same INVALID_ARGUMENTS and mSatelliteSessionController loop has also been reproduced on Custom ROMs like crDroid for the Redmi Note 13 5G 'stone').
Looking at the AOSP source code (frameworks/opt/telephony/.../SatelliteController.java), the exception is correctly generated here:
.SatelliteError public int registerForSatelliteModemStateChanged(int subId,
@NonNull ISatelliteStateCallback callback) {
if (mSatelliteSessionController != null) {
mSatelliteSessionController.registerForSatelliteModemStateChanged(callback);
} else {
loge("registerForSatelliteModemStateChanged: mSatelliteSessionController is not initialized yet");
return SatelliteManager.SATELLITEINVALIDTELEPHONYSTATE;
}
return SatelliteManager.SATELLITEERRORNONE;
}
The SatelliteController correctly handles the lack of satellite hardware by returning SATELLITE\INVALID_TELEPHONY_STATE. The fatal flaw is in the higher-level network manager (likely the MediaTek RIL or the telephony framework's state machine). When it receives this error during a network transition (Wi-Fi to Mobile Data), it fails to handle the exception properly. Instead of aborting the satellite registration, it immediately retries the call in an unconditional infinite loop.
A simple conditional check (if (hasSatelliteHardware)) before attempting to register the listener in the network state change event within the calling process will completely resolve this battery drain issue for all MediaTek devices without satellite capabilities.
https://redd.it/1v4x3rd
@reddit_android
Reddit
From the Android community on Reddit
Explore this post and more from the Android community
Google officially drops support for Android 6 Marshmallow after 11 years
As of yesterday, Google has officially pulled the plug on Android 6. This means the OS will no longer receive Play Protect updates and will not be included in the new APK program. Having been supported for exactly 11 years, it goes down as the longest-supported version in Android history. Google Play Services is now only supported on Android 7 and above.
Source: https://support.google.com/googleplay/answer/9037938?hl=en
Google also made changes to several other applications yesterday. YouTube now requires Android 10 and above, meaning Android 9 will no longer receive YouTube updates. The Google app's minimum requirement jumped from Android 9 directly to Android 11, and core apps like Gmail now require at least Android 7 and above.
https://redd.it/1v4o307
@reddit_android
As of yesterday, Google has officially pulled the plug on Android 6. This means the OS will no longer receive Play Protect updates and will not be included in the new APK program. Having been supported for exactly 11 years, it goes down as the longest-supported version in Android history. Google Play Services is now only supported on Android 7 and above.
Source: https://support.google.com/googleplay/answer/9037938?hl=en
Google also made changes to several other applications yesterday. YouTube now requires Android 10 and above, meaning Android 9 will no longer receive YouTube updates. The Google app's minimum requirement jumped from Android 9 directly to Android 11, and core apps like Gmail now require at least Android 7 and above.
https://redd.it/1v4o307
@reddit_android
Google
Keep your device & apps working with Google Play services - Google Play Help
Google Play services keeps your apps updated and running smoothly on Android devices. What's Google Play services Google Play services connects apps to other Google services, like Google Sign In and
I think Google's upcoming Android changes deserve way more attention than they're getting
I've been using Android for years because of one simple reason: freedom.
If I wanted to install an app from GitHub, F-Droid, or directly from a developer, I could. If I wanted to avoid the Play Store, I could. If I wanted to customize my phone, I could. That's what always made Android feel different from other mobile operating systems.
Recently I found https://keepandroidopen.org/, and after reading through it, I honestly think this is something every Android user should at least know about.
From what I understand, Google's planned changes could make distributing apps outside the Play Store much harder for independent developers by requiring developer verification through Google. Whether you're into open source software, custom ROMs, privacy focused apps, or just like having the choice to install software from wherever you want, this could have a real impact on the openness of Android.
I'm only 16, so I'm definitely not an expert, and maybe there are parts of this I'm overlooking. But if Android slowly becomes more restricted over time, I think that's something worth discussing now instead of after it happens.
I'm not posting this to tell anyone what to think. I just think more people in the Android community should be aware of what's being proposed and decide for themselves.
Website:
https://keepandroidopen.org/
I'd really like to hear what you all think. Is this a reasonable security measure, or do you think it goes against what has always made Android different?
https://redd.it/1v4fvwy
@reddit_android
I've been using Android for years because of one simple reason: freedom.
If I wanted to install an app from GitHub, F-Droid, or directly from a developer, I could. If I wanted to avoid the Play Store, I could. If I wanted to customize my phone, I could. That's what always made Android feel different from other mobile operating systems.
Recently I found https://keepandroidopen.org/, and after reading through it, I honestly think this is something every Android user should at least know about.
From what I understand, Google's planned changes could make distributing apps outside the Play Store much harder for independent developers by requiring developer verification through Google. Whether you're into open source software, custom ROMs, privacy focused apps, or just like having the choice to install software from wherever you want, this could have a real impact on the openness of Android.
I'm only 16, so I'm definitely not an expert, and maybe there are parts of this I'm overlooking. But if Android slowly becomes more restricted over time, I think that's something worth discussing now instead of after it happens.
I'm not posting this to tell anyone what to think. I just think more people in the Android community should be aware of what's being proposed and decide for themselves.
Website:
https://keepandroidopen.org/
I'd really like to hear what you all think. Is this a reasonable security measure, or do you think it goes against what has always made Android different?
https://redd.it/1v4fvwy
@reddit_android
keepandroidopen.org
Keep Android Open
Your phone is about to stop being yours. In 2027, Google will block every Android app whose developer hasn't registered with them.
Daily Superthread (Jul 24 2026) - Your daily thread for questions, device recommendations and general discussions!
Note 1. You can search for previous daily threads.
Note 2. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
Please post your questions here. Feel free to use this thread for general questions/discussion as well.
https://redd.it/1v59dt8
@reddit_android
Note 1. You can search for previous daily threads.
Note 2. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
Please post your questions here. Feel free to use this thread for general questions/discussion as well.
https://redd.it/1v59dt8
@reddit_android
Reddit
r/Android
Android news, reviews, tips, and discussions about rooting, tutorials, and apps. General discussion about devices is welcome. Please direct technical support, upgrade questions, buy/sell, app recommendations, and carrier-related issues to other subreddits.
Exclusive: Nothing to exit 12 markets as global shipments decline, despite India growth
https://www.digit.in/news/mobile-phones/exclusive-nothing-to-exit-12-markets-as-global-shipments-decline-despite-india-growth.html
https://redd.it/1v5d245
@reddit_android
https://www.digit.in/news/mobile-phones/exclusive-nothing-to-exit-12-markets-as-global-shipments-decline-despite-india-growth.html
https://redd.it/1v5d245
@reddit_android
Digit
Exclusive: Nothing to exit 12 markets as global shipments decline, despite India growth
Nothing was India's fastest-growing smartphone brand in Q2 2026, posting 105% year-on-year growth according to Counterpoint Research, driven by the Phone (4a) series and the company's title sponsorship of the Royal Challengers Bengaluru during the IPL 2026.…
Google confirms Pixel 11 price increase, reveals ‘dedicated’ effort to make Android more RAM-efficient
https://9to5google.com/2026/07/24/google-pixel-11-price-increase/
https://redd.it/1v5jaow
@reddit_android
https://9to5google.com/2026/07/24/google-pixel-11-price-increase/
https://redd.it/1v5jaow
@reddit_android
9to5Google
Google confirms Pixel 11 price increase, reveals ‘dedicated’ effort to make Android more RAM-efficient
Ahead of the Pixel 11 launch, the Google hardware division detailed how it's impacted by the “severe, supplier-driven RAM memory crisis.”
Android May Soon Restrict On-Device ADB, Affecting Shizuku, libadb and Developers
https://kitsumed.github.io/blog/posts/android-may-soon-restrict-on-device-adb/
https://redd.it/1v5jxaz
@reddit_android
https://kitsumed.github.io/blog/posts/android-may-soon-restrict-on-device-adb/
https://redd.it/1v5jxaz
@reddit_android
Kitsumed Blog
Android May Soon Restrict On-Device ADB, Affecting Shizuku, libadb and Developers
Changes proposed for ADB could kill an entire ecosystem of open-source power-user apps, mobile developer setups, and rootless privacy tools based on Shizuku.
Qualcomm Tells Customers That Prices Are Going Up by Double Digits
https://www.bloomberg.com/news/articles/2026-07-24/qualcomm-tells-customers-that-prices-are-going-up-by-double-digits
https://redd.it/1v5mbzo
@reddit_android
https://www.bloomberg.com/news/articles/2026-07-24/qualcomm-tells-customers-that-prices-are-going-up-by-double-digits
https://redd.it/1v5mbzo
@reddit_android
Bloomberg.com
Qualcomm Tells Customers That Prices Are Going Up by Double Digits
Qualcomm Inc., the biggest maker of smartphone processors, plans to increase prices by a percentage in the double digits, a move that’s likely to ripple through much of the tech industry.
Nothing calls 'fake news' on shutdown report while confirming key changes
https://9to5google.com/2026/07/24/nothing-shutdown-report-denial/
https://redd.it/1v5o9ol
@reddit_android
https://9to5google.com/2026/07/24/nothing-shutdown-report-denial/
https://redd.it/1v5o9ol
@reddit_android
9to5Google
Nothing calls 'fake news' on shutdown report while confirming key changes
Following a report earlier today, Nothing says that it is not exiting markets, but it is making some key changes...
Exclusive: Leaked firmware reveals specs of canceled ROG Phone 10 series codenamed "Boston" - notebookcheck
https://www.notebookcheck.net/Exclusive-Leaked-firmware-reveals-specs-of-canceled-ROG-Phone-10-series-codenamed-Boston.1348327.0.html
https://redd.it/1v5ye5v
@reddit_android
https://www.notebookcheck.net/Exclusive-Leaked-firmware-reveals-specs-of-canceled-ROG-Phone-10-series-codenamed-Boston.1348327.0.html
https://redd.it/1v5ye5v
@reddit_android
Notebookcheck
Exclusive: Leaked firmware reveals specs of canceled ROG Phone 10 series codenamed "Boston"
Leaked firmware reveals that Asus developed ROG Phone 10 and 10 Pro models, codenamed “Boston,” with Snapdragon 8 Elite Gen 5 chips, Wi-Fi 7, and distinct camera systems. The devices were reportedly canceled following Asus’s 2026 withdrawal from the smartphone…
Samsung Apps vs. Google Apps: What’s your setup and what features keep you from switching?
Hey everyone!
I’m curious about your setup: **Which versions do you use, and what specific feature is an absolute dealbreaker if you try to switch?**
**Here is my current setup and the main features keeping me on these specific apps. If you use the alternatives, are there any killer features I’m missing out on that might change my mind?**
* **Browser: Samsung Internet**
* Native ad-blocker support, forced dark mode on all sites, background video playback, and a highly customizable bottom toolbar.
* **Notes: Google Keep**
* Lightweight, clean, and quick cross-platform access via any browser or device.
* **Gallery / Cloud: Samsung Gallery**
* Powerful on-device AI editing, fast local folder management, and smooth system integration.
* **Phone & Messages: Samsung Phone/Messages**
* Built-in SPAM protection, unwanted call filtering, and the ability to block calls from numbers outside my contact list.
**Where do you stand? Do you go 100% Samsung, 100% Google, or a mix of both? What single feature forces you to pick one over the other?**
I’d also love to hear your thoughts on the rest of the matchups:
* **Calendar:** Samsung Calendar vs. Google Calendar
* **Files:** My Files vs. Files by Google
* **Wallet:** Samsung Wallet vs. Google Wallet
* **Health:** Samsung Health vs. Health Connect
* **Smart Home:** SmartThings vs. Google Home
* **Find:** Samsung Find vs. Google Find My Device
* **Voice Recorder:** Samsung Voice Recorder vs. Google Recorder
* **Assistant:** Bixby vs. Gemini
* **Weather:** Samsung Weather vs. Google Weather
https://redd.it/1v5j8wz
@reddit_android
Hey everyone!
I’m curious about your setup: **Which versions do you use, and what specific feature is an absolute dealbreaker if you try to switch?**
**Here is my current setup and the main features keeping me on these specific apps. If you use the alternatives, are there any killer features I’m missing out on that might change my mind?**
* **Browser: Samsung Internet**
* Native ad-blocker support, forced dark mode on all sites, background video playback, and a highly customizable bottom toolbar.
* **Notes: Google Keep**
* Lightweight, clean, and quick cross-platform access via any browser or device.
* **Gallery / Cloud: Samsung Gallery**
* Powerful on-device AI editing, fast local folder management, and smooth system integration.
* **Phone & Messages: Samsung Phone/Messages**
* Built-in SPAM protection, unwanted call filtering, and the ability to block calls from numbers outside my contact list.
**Where do you stand? Do you go 100% Samsung, 100% Google, or a mix of both? What single feature forces you to pick one over the other?**
I’d also love to hear your thoughts on the rest of the matchups:
* **Calendar:** Samsung Calendar vs. Google Calendar
* **Files:** My Files vs. Files by Google
* **Wallet:** Samsung Wallet vs. Google Wallet
* **Health:** Samsung Health vs. Health Connect
* **Smart Home:** SmartThings vs. Google Home
* **Find:** Samsung Find vs. Google Find My Device
* **Voice Recorder:** Samsung Voice Recorder vs. Google Recorder
* **Assistant:** Bixby vs. Gemini
* **Weather:** Samsung Weather vs. Google Weather
https://redd.it/1v5j8wz
@reddit_android
Reddit
From the Android community on Reddit
Explore this post and more from the Android community
Android Circuit: Galaxy Unpacked Highlights, Qualcomm’s Flagship Killer Chip, EU’s Google Play Fine
https://www.forbes.com/sites/ewanspence/2026/07/24/android-news-headlines-galaxy-unpacked-z-fold8-watch9-oneplus-pad-4-qualcomm-snapdragon-google-play-fine/
https://redd.it/1v643sn
@reddit_android
https://www.forbes.com/sites/ewanspence/2026/07/24/android-news-headlines-galaxy-unpacked-z-fold8-watch9-oneplus-pad-4-qualcomm-snapdragon-google-play-fine/
https://redd.it/1v643sn
@reddit_android
Forbes
Android Circuit: Galaxy Unpacked Highlights, Qualcomm’s Flagship Killer Chip, EU’s Google Play Fine
This week’s Android headlines: Galaxy Unpacked highlights, the new Z Fold8, Z Fold8 Ultra and Z Flip8, one final OnePlus tablet, Qualcomm’s flagship killer chipset and more...
Daily Superthread (Jul 25 2026) - Your daily thread for questions, device recommendations and general discussions!
Note 1. You can search for previous daily threads.
Note 2. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
Please post your questions here. Feel free to use this thread for general questions/discussion as well.
https://redd.it/1v66ij5
@reddit_android
Note 1. You can search for previous daily threads.
Note 2. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
Please post your questions here. Feel free to use this thread for general questions/discussion as well.
https://redd.it/1v66ij5
@reddit_android
Reddit
r/Android
Android news, reviews, tips, and discussions about rooting, tutorials, and apps. General discussion about devices is welcome. Please direct technical support, upgrade questions, buy/sell, app recommendations, and carrier-related issues to other subreddits.
Saturday APPreciation thread (Jul 25 2026) - Your weekly app recommendation/request thread!
Note 1. You can search for previous [weekly Saturday threads\](https://www.reddit.com/r/Android/search/?q=Saturday+APPreciation+thread&type=posts&sort=new)
Note 2. You can also search for previous [daily threads\](https://www.reddit.com/r/Android/search/?q=daily+superthread&include\_over\_18=on&restrict\_sr=on&t=all&sort=new).
Note 3. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
This weekly Saturday thread is for:
* App promotion,
* App praise/sharing
If you are a developer, you may promote your own app ONLY under the bolded, distinguished moderator comment. Users: if you think someone is trying to bypass this rule by promoting their app in the general thread, click the report button so we can take a look!
https://redd.it/1v66ijm
@reddit_android
Note 1. You can search for previous [weekly Saturday threads\](https://www.reddit.com/r/Android/search/?q=Saturday+APPreciation+thread&type=posts&sort=new)
Note 2. You can also search for previous [daily threads\](https://www.reddit.com/r/Android/search/?q=daily+superthread&include\_over\_18=on&restrict\_sr=on&t=all&sort=new).
Note 3. Join our IRC and Telegram chat-rooms! Please see our wiki for instructions.
This weekly Saturday thread is for:
* App promotion,
* App praise/sharing
If you are a developer, you may promote your own app ONLY under the bolded, distinguished moderator comment. Users: if you think someone is trying to bypass this rule by promoting their app in the general thread, click the report button so we can take a look!
https://redd.it/1v66ijm
@reddit_android
Reddit
r/Android
Android news, reviews, tips, and discussions about rooting, tutorials, and apps. General discussion about devices is welcome. Please direct technical support, upgrade questions, buy/sell, app recommendations, and carrier-related issues to other subreddits.
US government targets Cop City protester over phone operating system
https://www.theguardian.com/us-news/2026/jul/23/cop-city-protester-phone
https://redd.it/1v6614j
@reddit_android
https://www.theguardian.com/us-news/2026/jul/23/cop-city-protester-phone
https://redd.it/1v6614j
@reddit_android
the Guardian
US government targets Cop City protester over phone operating system
Concern over US effort to prosecute Sam Tunick, accused by authorities of wiping his phone using GrapheneOS
OnePlus N6x's battery capacity confirmed
https://gsmarena.com/oneplus_n6x_battery_capacity-news-73880.php
https://redd.it/1v6f8ij
@reddit_android
https://gsmarena.com/oneplus_n6x_battery_capacity-news-73880.php
https://redd.it/1v6f8ij
@reddit_android
GSMArena.com
OnePlus N6x's battery capacity confirmed
It's launching next week. OnePlus recently revealed the design of the N6x, which will be launched on July 31. The brand also said that the N6x can provide...
iQOO Z11 Lite debuts with 6,500mAh battery and Dimensity 6300 SoC
https://www.gsmarena.com/iqoo_z11_lite_debuts_with_6500mah_battery_and_dimensity_6300_soc-news-73860.php
https://redd.it/1v6hab0
@reddit_android
https://www.gsmarena.com/iqoo_z11_lite_debuts_with_6500mah_battery_and_dimensity_6300_soc-news-73860.php
https://redd.it/1v6hab0
@reddit_android
GSMArena.com
iQOO Z11 Lite debuts with 6,500mAh battery and Dimensity 6300 SoC
The smartphone sports a 6.74-inch LCD display. iQOO has officially launched the Z11 Lite in India after revealing nearly every aspect of the smartphone...
The Ultimate Battery Life Review: 78 Phones, One Brutally Honest Test - Geekerwan
https://www.youtube.com/watch?v=MpgUFrsIWSQ
https://redd.it/1v6qtxz
@reddit_android
https://www.youtube.com/watch?v=MpgUFrsIWSQ
https://redd.it/1v6qtxz
@reddit_android
YouTube
极客湾手机续航大横评:电池锁容?电量缩水?谁在浑水摸鱼?
极客湾的手机年度大横评第二弹来啦!这次我们花钱自购了79台零售手机,不仅要用基于AI Agent自主玩手机的5.0新标准好好测一测续航,更是要重点测一下电池锁容问题,和充电降速问题,扒一扒各大厂商宣传的底裤!
本期视频完全无广,力求给大家看到最真实最赤裸的表现,欢迎大家点赞支持呀!
本期视频完全无广,力求给大家看到最真实最赤裸的表现,欢迎大家点赞支持呀!
T1 Mobile smartphone - "Real Review" - Flossy Carter
https://www.youtube.com/watch?v=Jem78xWpgx4
https://redd.it/1v6sv98
@reddit_android
https://www.youtube.com/watch?v=Jem78xWpgx4
https://redd.it/1v6sv98
@reddit_android
YouTube
Trump Mobile T1 - "Real Review"
Trump Mobile T1
Buy it here, AT YOUR OWN RISK 🚨🤣
https://enroll.trumpmobile.com/phones
Wanna buy some of my gadgets - http://amzn.to/1zZ2y4P
Check out my website - https://flossycarterbiz.wixsite.com/mysite
Help support the channel,
Check out the Merch,…
Buy it here, AT YOUR OWN RISK 🚨🤣
https://enroll.trumpmobile.com/phones
Wanna buy some of my gadgets - http://amzn.to/1zZ2y4P
Check out my website - https://flossycarterbiz.wixsite.com/mysite
Help support the channel,
Check out the Merch,…