logo
Best Google Pixel 8A Deals: Trade-In Offers Can Basically Get You This Phone for Free

Best Google Pixel 8A Deals: Trade-In Offers Can Basically Get You This Phone for Free

Yahoo06-02-2025

Google's flashy new Pixel 9 phones are tempting, but many people don't really need $1,000 of cutting-edge hardware in their pocket. If you're looking for a more affordable alternative with a lot of the same features, the Pixel 8A is our absolute favorite. We love it for Android users and it boasts many of the same features as Google's more advanced flagship models at a fraction of the price. With these offers in full swing right now, you can get your hands on one for even less.
Adrian Marlow has years of experience helping CNET readers take advantage of the best tech deals and has rounded up some of the best places to score savings on the already-affordable Pixel 8A. These include straightforward discounts on unlocked models and new lines, plus trade-in offers for those looking to sign up with a carrier right away. We'll continue to update this page as deals come and go, so check back often.
The Pixel 8A has many of the same features as the line's higher-end models, from similar battery life to comparable processors. It also boasts the ability to run Audio Magic Eraser, Best Take and Gemini Nano model, which is something Google's budget-tier phones haven't been able to handle in the past. The Pixel 8A even provides the same display brightness as the standard Pixel 8, offering up to 2,000 nits of brightness (1,400 nits in HDR). It's fairly close in size to the line's flagship too. The Pixel 8 has a 6.2-inch display, while the 8A comes in at 6.1 inches.
At the moment, the overall best Pixel 8A deal is being offered by T-Mobile. This is one of the only retailers or carriers that is offering you a chance to snag one of these budget-friendly Androids completely free. You'll have to jump through a few hoops to take advantage of this offer, as it requires either a new line or an eligible trade-in. That's still slightly better than Google's current offer, which is exclusively for new customers.
If you're a new Google Fi customer, you can snag the Pixel 8A completely free when activate the phone on a qualifying plan. The discount is then applied as bill credits over a 24-month period. If you don't want to sign up with Google Fi, you can still grab an unlocked model for $100 off.
See at Google
T-Mobile is offering both new and existing customers a chance to get their hands on a Google Pixel 8A for free right now. This offer is available to those adding a new line on just about any plan, or those on a Go5G, Magenta or ONE plan with an eligible device to trade in. All the heavy hitters are included, and any iPhone 11 or newer or Samsung Galaxy S9 or newer will get you the full $500 credit. Just note that the discount is applied in the form of monthly bill credits for the duration of the two-year contract term.
See at T-Mobile
There aren't any direct discounts on the 8A right now but, you can save up to $500 when you trade in another phone. You'll get the most value from popular models like the iPhone 15. Depending on the condition of your phone, you could get enough trade-in credits to score the Pixel 8A for free.
See at Best Buy
Target currently does not have any direct offers on the Pixel 8A but, you can use your Target Circle Card* to get this phone for 5% off. It's not much but it's still a way to save.
See at Target
Discounts on phones typically fall into one of two categories, and CNET's dedicated deals team has scoured the web for both to help you take advantage of the best Pixel 8A offers available at any given time. The first kind of deal includes straightforward or "no strings attached" discounts on unlocked models. These deals typically feature smaller discounts, but they don't require a trade-in or a contract with a carrier. The second kind of deal includes carrier offers, which typically require you to have, or switch to, an eligible service plan and will lock you into a two- or three-year contract. These deals usually feature substantial discounts, and sometimes they'll even score you a new phone for free. We've highlighted the best deals in both categories above so you can choose the one that works best for you.
*All information about the Target Circle Card has been collected independently by CNET and has not been reviewed by the issuer.

Orange background

Try Our AI Features

Explore what Daily8 AI can do for you:

Comments

No comments yet...

Related Articles

8 things you must try with the Linux Terminal app on your Android phone
8 things you must try with the Linux Terminal app on your Android phone

Android Authority

timean hour ago

  • Android Authority

8 things you must try with the Linux Terminal app on your Android phone

Andy Walker / Android Authority One of Google's significant innovations that has gone largely unnoticed this year was the rollout of Linux Terminal support baked right into Android. If you own a Pixel and are running the latest stable version of Android, you can enable the app and open up a world of possibilities. Sure, the terminal is daunting, but thanks to its presence in a virtual machine, it remains largely isolated from your phone's critical inner workings. This makes it the perfect playground. If you're asking yourself how a black screen with incoherent lines of text can be a playground, you've come to the right place. In this piece, I'll detail some useful, not-so-useful, and downright fun ways to use the Linux Terminal app on your Android phone. Have you enabled the Linux Terminal app on your Pixel? 953 votes Yes, I have. 24 % No, I haven't yet, but I'm considering it. 51 % No, I don't want to at all. 10 % No, I don't have a phone that supports it. 15 % Get to grips with the basics Andy Walker / Android Authority Getting lost in the terminal is easy, so a little help is always welcome. I've been leaning heavily on this brilliant Linux Terminal companion app called Linux Command Library to help with the essential, must-know commands. However, you needn't ever go beyond the terminal itself for help. There are two parameters you'll need to remember: help and man . Help displays a list of commands that are available to you. Think of it as a phonebook. Man, on the other hand, displays the manual pages for utilities and commands. It's a good idea to use the help command to explore the possibilities broadly, and then man to drill down into those you're interested in. The man parameter is used as such, with ls as an example: man ls There are two other important commands you'll need to know. They are: Update the system: sudo apt update and sudo apt upgrade and Install a package: sudo apt install [name of the package] Remove old lines from the terminal: clear Close the currently running program: usually CTRL c unless otherwise specified by the utility Experiment with system information tools Andy Walker / Android Authority Let's look at something simple before we get into the more technical items. Linux has several system information tools that you can access through the terminal. Running them on the Pixel will give you detailed information about how much RAM and CPU power Debian is using, as well as other details related to your virtual machine. There are two options available: neofetch , which displays a less nuanced overview of your system, and htop , which offers real-time updates of system resource usage. sudo apt install neofetch sudo apt install htop Once installed, type neofetch or htop in the terminal and hit the Enter button to run them. Play a game, or two, or three! The command line might seem an impractical way to play games, but terminal games just ooze charm. Playing Bastet, a Tetris-like block stacking game, was one of the first things I learned how to do on Linux, and it's something I still do to this day. Yes, using the Pixel 8's relatively small screen and control buttons is awkward, but it's still a blast. To install it, use the command below: sudo apt install bastet Of course, Bastet isn't your only option. Find some of my favorite terminal games below, including their install commands: Pacman4console sudo apt install pacman4console Moon-Buggy sudo apt install moon-buggy Nsnake sudo apt install nsnake Ninvaders sudo apt install ninvaders Control other devices on your network Perhaps one of the more useful ways to use the terminal on your Android phone is to command other devices on your network through SSH. If you've built your own Pi-hole to block ads or build your own digital assistant, you can easily SSH into it from your phone through the terminal and check up on it occasionally. You will need to install SSH using the command below sudo apt install ssh Alternatively, if you're not a Pi-hole owner, you can still SSH into almost any machine, from your homemade NAS to your desktop. Turn the Terminal into a secret notebook There are several text editors that make full use of the terminal, but nano is my favorite. I've used it for years on the desktop, and now I can try it on the terminal. To install it, enter the following command: sudo apt install nano Once it's installed, run nano . You can now use the terminal to take notes, too. You can save the current note in a text file and recall it once you reopen the app. Brilliant! Step into the Matrix Andy Walker / Android Authority Your Android phone can be a portal to 1999, when leather trench coats were still all the rage. The scrolling matrix screen is still a firm part of popular culture, and you can turn your terminal window into something similar thanks to cmatrix . To install it, type the following into the terminal on your phone, followed by the Enter key: sudo apt install cmatrix To run the utility, type the following, followed by the Enter key: cmatrix Your phone's terminal window should now be covered in vertically cascading text. To stop the command, tap the CTRL button followed by C. Stress test your Pixel Should you stress test phones known for heating problems? Probably not, but it's fun nonetheless. After building a system, it's a good idea to stress test it to check what it's capable of, how hot it'll get, and whether all the components are in working order. You can do this, too, using traditional Android apps. However, it's much more fun to use the terminal. First, install the stress testing tool: sudo apt install stress Once installed, you can stress test the CPU by running the following command: stress –cpu [number of cpus] –timeout [how long you want the test to run, in seconds] As an example, the Pixel 8 has nine CPU cores, so to stress test all of them my command would be: stress –cpu 9 –timeout 60 To monitor the progress of the test, open htop in a second terminal tab, and switch between the two views. You will notice the CPU cores on htop kick up to 100% and remain pretty high for the allotted time. Become a digital cat parent Andy Walker / Android Authority If you're a fan of early 2010s pop culture, you can turn your expensive Google phone into a Nyan Cat display. Run the below command: sudo apt install nyancat Then type nyancat and hit Enter to run the utility. Your terminal will display a flying poptart-encased feline with rainbow trails. This is just the beginning! The Linux Terminal app is an excellent addition to Android phones. While users only have access to a text-based portal to the Debian virtual machine, Google is planning to run full-scale Linux apps on Android's desktop mode eventually. That's pretty exciting, and something we can all look forward to in the future. For now, the terminal is a great learning and experimenting tool for most and a portable development toolkit for others. The items above are merely intended to highlight the terminal's potential. Some have installed full-blown graphical interfaces, turning their Pixels into portable Linux machines. We've even managed to install and run Doom. The possibilities are only really limited by your imagination, so I encourage you to keep reading resources, guides, and how-tos detailing the more intricate ways of using the terminal on Android. Do you have a fun way of using the Linux Terminal on your phone? Perhaps I missed something handy. If so, let the community know in the comments below.

My Top 5 Ways to Give Old Security Devices New Life
My Top 5 Ways to Give Old Security Devices New Life

CNET

timean hour ago

  • CNET

My Top 5 Ways to Give Old Security Devices New Life

I know smart home security devices get worn out and replaced, with better features like AI detection. But that doesn't mean you need to give up on your old security tech. I switch out a whole lot of home devices in my reviews, so I'm always tinkering with ways to reuse or find more value in these products. Before you throw out old technology, I've got some ideas. CNET already has an excellent guide to turning an old phone into a security camera. "One of the best app options for setting up your phone as a security camera is Alfred," we confirmed. However, there's a lot more you can do. Before you consider recycling or donations, think about this. Turn a cam into a birdwatcher Outdoor cams can serve many purposes, including watching wildlife once their main job is through. Tyler Lacoma/CNET Security cameras eventually reach the end of their current life, especially when you upgrade to a higher resolution, choose to stop paying for video storage or move to a different home. But that doesn't mean the camera is destined for the dustbin: These cameras generally still have working motion detections and apps that support live view. If they're wireless, you still have the option to put them in many different spots. One of the most popular new uses for old security cams is a bird or wildlife watcher. You can post these cameras in front of a birdfeeder or salt lick, for instance, to get up-close views of what wildlife comes near, along with (if you prefer) notifications about their movement. Open your live view to take a look and nab a screenshot if you want. Bring an outdoor cam inside as a nanny cam The end-gen Arlo Essential Indoor cam is an all-around nanny cam winner. Arlo Outdoor security cams can run into major problems, including broken mounts, scratched lenses, poor fields of view or even legal troubles. If its time as an outdoor monitor has run out, don't throw it away: Bring that camera inside for another task. One effective job, even for a damaged camera, is keeping watch over a baby's crib, pet bed or other nanny cam job. You can set up the old cam on a shelf or nearby table without needing a mount, and even a damaged camera can get a clear enough view and activate motion alerts to let you know about disturbances or changes in behavior that need your attention. Revive a smart display as a digital photo frame Old smart displays are perfect digital photo albums. Amazon Whether you're worried about privacy, upgrading to a new model or choosing a new method of home control, smart displays can reach the end of their useful lives, too. But even if you don't use them to control smart homes, ask voice assistants questions, or watch videos anymore, they can still serve a purpose even if they aren't a central hub anymore. One of the best ways to use an old smart display is by converting it to a digital picture frame. All it needs is access to an outlet, and you can put the display on a shelf or table to showcase a favorite album of pictures, like an eternal screensaver of happy moments. Echo Shows, Nest Hubs, and Lenovo smart displays all have the ability to tap into online photo albums like Google Photos or Amazon albums that you can manage and adjust whenever you want. Then, you can enable a photo mode on the smart display to show them off. That could give your display years of extra service at no additional cost. Recruit a smart plug as an energy monitor device You'd be surprised how many new purposes you can find for an old smart plug. Eve If you're switching around appliances, lighting solutions or entertainment setups, you may find a smart plug or two you no longer use. In these cases, there's another way you can use smart plugs even if you aren't scheduling or controlling devices from afar. Most smart plugs can still work as energy monitors, giving you an idea of how much electricity any plug-in device in your home uses. Passive energy monitoring can be useful for spotting ways to save money or finding the real energy hogs in your home, but that's just the start. Even basic on/off functionality can have its uses as well, especially when it comes to safety. Some people, for example, like to recruit a smart plug where they plug in their blow-dryers or curlers so they can always know for certain if they are turned off or not. Others like to put one on small freezers, so they know if it has unexpectedly shut off. Retrofit an old home security system Wired home security systems don't have to stay forgotten with remnants of an old security system, especially a wired system that can't be easily removed, is more common than you'd think for new homeowners and renters. While you must be careful accessing these devices, you can often retrofit them with a smart upgrade to make them functional again and play well with app controls -- if you have the patience. The key is using a solution like which offers kits that convert old security alarm systems (and other things like old smart garage doors) into versions ready for Wi-Fi and advanced smart features. You can then use popular platforms like SmartThings, Home Assistant and Hubitat to control the security system with updated features. The only downside to this conversion is that it will require some DIY work, including wiring in the new panel. It's not going to work well with modern wireless security sensors, although those may be supported through Zigbee connections for other types of workarounds. Can I remove components from my smart home devices and use those? As an option to tinker around and learn about electronics, sure; as a way to reuse smart home technology -- don't expect anything. Hobbyists with the right tools, parts and coding platforms may be able to make something functional, but again, this is mostly for fun. And, of course, it will void your warranties and make products ineligible for trade-ins, donations, and so on. For more information, visit our guide on how to start making your home smarter, how to reduce the number of smart apps you have to use and how specific smart home devices can save you money.

Got a Pixel phone? Grab these 5 Google apps because they're not installed by default
Got a Pixel phone? Grab these 5 Google apps because they're not installed by default

Android Authority

time2 hours ago

  • Android Authority

Got a Pixel phone? Grab these 5 Google apps because they're not installed by default

Rita El Khoury / Android Authority Every time I set up a new Pixel phone, there is a list of apps that I immediately install. Spotify, 1Password, Slack, Todoist, DuckDuckGo, JotterPad, Backdrops, Plex, Wanderlog, and many more are at the top of my list, but so are a few apps developed by the company that made my phone — Google. Despite these being Google apps, they don't ship by default on Pixels and must be manually added to the phones. Some of them are known; others are more obscure. But there's a particular reason to use each and every one of them, so without further ado, here are the five Google apps I add to my Pixel and that I think you should consider as well. Chrome Beta Rita El Khoury / Android Authority Why install a beta version of Chrome when the official Chrome is already pre-loaded? Well, the reason is multiple account support. See, unlike almost all other Google apps, Chrome doesn't let me switch accounts very easily with a swipe across my profile picture. No, I have to log out and then log in with the new account each time, essentially resetting the app every time I do this. To counter it, I use Chrome and Chrome Beta (and Chrome Dev), and sign into a different Gmail account in each app. My personal account lives in Chrome, my joint account with my husband goes in Beta, and my Workspace account is in Dev. That way, I can access all my distinct bookmarks, browsing histories, logins, and autofill details in each one, without mixing business and pleasure. It's a bit of a cumbersome solution when I click on a link and see it open in my personal Chrome (which is set as default browser) when I know it should've gone in my family Chrome Beta, but I've learned to live with this limitation. I copy/paste the URL to manually open it in the appropriate browser. Besides that, this works beautifully and allows me to separate church and state with my browsing habits and data. Google Maps Go Rita El Khoury / Android Authority Google Maps is one of the most-used apps on my phone, but it has one glaring flaw: It becomes useless the moment I start navigation. I can't do a proper search, nor can I look up the details of a place I'm walking by. I have to completely stop navigation to do that, then search for my destination again and start nav a second time. Google Maps Go solves this by providing a second, lighter, smaller, less resource-intensive instance of Maps on my phone. So when I'm already following step-by-step directions to walk, drive, or take transit somewhere, I can just launch Maps Go to do anything else I might need Maps for. Passing by a cool-looking restaurant? I look it up and see if it has a good rating and bookmark it. Need to find specific details about some places while I'm on the subway? I can do my research without messing up my train times and journey. When I wrote about this benefit of Google Maps Go, a few users suggested I use Waze for navigation and keep Google Maps free. This is another workaround, but it only applies if you drive a lot. Most of my transport happens on foot or by transit, so I can't use Waze for that. Gallery Joe Maring / Android Authority Every time we mention this app on Android Authority, we get many comments from people who didn't know Google Gallery existed. So here I go again. Gallery is Google's fast, light, on-device alternative to Photos. It scans all of the photos and videos on your phone, organizes them, does some light facial recognition, and stays offline the whole time. The first scan takes time, but after that, Gallery is fast and efficient. And most of all, it's private. It works pretty well as a local gallery app, and I use it a lot to access my screenshots, WhatsApp folders, and all the other media files on my phone. Google Translate Rita El Khoury / Android Authority Do I even need to introduce Translate to you? I don't know why Google has left out this essential app from its preloaded Pixel apps, forcing us to install it on every device manually, but here we are. Google Translate does what the name says: It translates things — text, audio, photos, full conversations — from one language to another. It can easily auto-detect the input language and supports offline translations for dozens and dozens of languages. I speak three languages nearly natively, and I can figure my way around two other languages, but that's not enough for a frequent traveler or culture addict like me. So when I'm in a country where I don't speak the language, like Hungary, Albania, the Czech Republic, Turkey, or Nepal, I resort to Google Translate to communicate with people who aren't very confident using English. As a matter of fact, my taxi driver in Turkey pulled out his phone and launched Google Translate by himself to organize my pick-up and drop-off — a proper border-crossing solution. Google Go Rita El Khoury / Android Authority There might be a pattern here; Google Go is the third light version of a default Google app that I use, and once again, there's a good reason for that. Google Go was built for less powerful phones and more limited internet connections, and that's part of its appeal. It's faster and lighter than Google's main app, but it still does the job. What I love about it, though, and the reason why it's earned a spot on my Pixel is that it supports two features that aren't available in the regular Google app. One of them is incognito searching. It's a tap away and allows me to do a quick search without it showing up in my Google history and without launching Chrome and rejecting Google's cookie pop-up each time. The other is the built-in reader mode, which is also available in Chrome but requires a few tweaks with flags to enable (and even then isn't as straightforward). In Google Go, any article page immediately shows a bottom bar with a play button in the middle. It starts reading the article for me so I can go about my day, make coffee or prepare lunch, start a new laundry cycle or brush my teeth, all while listening to the article. There are speed controls, 10-second skip and rewind buttons, too, plus an easy translation menu. It's sad that all these nifty additions aren't available in the main Google app because I'm sure a lot of people would love them and use them as much as I do. Honorable mentions Before ending this article, I wanted to mention some other Google-made apps that are not pre-installed on Pixel phones (or rarely are) and are still worth testing and adding to your phone. Google News is the most obvious one, if you like to stay on top of what's happening in the world of politics, tech, or any other topic you're interested in. Google Tasks is a basic but efficient task manager. It combines very well with Assistant voice commands when you set up reminders. Google Fit has lost a lot of its shine since Google bought Fitbit, but it remains an excellent way to aggregate data from various health apps. I also used it when I was tracking my blood pressure after a brief scare earlier this year. Find Hub (previously Find My Device) is essential if you own other Pixel or Android gear; it allows me to locate my Buds Pro 2, Watch 3, and other Android phones, as well as my Google-compatible Bluetooth trackers like the Chipolo POP or moto tag. Photoscan is a secondary Google Photos tool that lets me scan physical photos to add them to my library. It automatically crops and rotates the image and removes all glare, saving me from manually doing this tedious work. I have yet to digitize my old photos, but for the rare time when I get handed a physical photo as memorabilia from a place or adventure, it's my go-to solution. And there you have it; all the great Google apps that you should consider adding to your Pixel, even if they didn't come preloaded on it. Have any other favorites? Let me know in the comments!

DOWNLOAD THE APP

Get Started Now: Download the App

Ready to dive into the world of global news and events? Download our app today from your preferred app store and start exploring.
app-storeplay-store