logo
Google Wallet's removing linked PayPal accounts next week — what you need to know

Google Wallet's removing linked PayPal accounts next week — what you need to know

Tom's Guide03-06-2025

U.S. Android users will soon see Google Wallet complete its removal of PayPal support by deleting all users' linked accounts.
Google stopped users from linking new PayPal accounts to Google Wallet back in April, but users who had previously linked an account have been able to continue using it. Unfortunately, Google's support page (via Android Authority) indicates that it will be ending this support from June 13, 2025. As such, any linked accounts will be automatically deleted from the Google Wallet app.
Google recommends that users have at least one card added to their account to make sure that they can continue to pay for goods and services. Also, users who have subscriptions set up with Google Wallet and their linked PayPal account will need to update the payment method as soon as possible. If they don't, then it is possible that you'll lose access to whatever app or service you're using.
However, it should be noted that you can still use PayPal-branded bank cards on the Google Wallet app. There are two kinds of these: the first are debit Mastercards that are linked to your PayPal balance account. Alternatively, there's the PayPal credit card, which is issued by Bank of America.
It's certainly disappointing that Google Wallet users are losing direct access to their PayPal accounts, a feature that has been part of Google's payment services since 2017. But on the bright side, PayPal recently announced that it will be launching a digital wallet app for iOS and Android in the coming weeks.
For the time being, we will have to wait and see what the future of PayPal payment is on some of the best Android phones.. Hopefully, users will soon have other means to use their PayPal account on their devices, but whatever happens, we will keep you updated on all the changes as soon as we hear of them.
Get instant access to breaking news, the hottest reviews, great deals and helpful tips.

Orange background

Try Our AI Features

Explore what Daily8 AI can do for you:

Comments

No comments yet...

Related Articles

Google killed Maps Timeline, so I self-hosted a better one
Google killed Maps Timeline, so I self-hosted a better one

Android Authority

time31 minutes ago

  • Android Authority

Google killed Maps Timeline, so I self-hosted a better one

Dhruv Bhutani / Android Authority As an avid traveler, Google Maps Timeline has long been one of my favorite hidden features. I'm used to opening it on slow Sunday afternoons and wandering through my own travel history. It showed alleyways I had forgotten, long layovers that blurred together while stepping out for a quick brunch across a new city, and impulsive last-minute rail journeys across Eastern Europe that never made it into photos. It's always felt like a private travel diary logging everywhere I've been. So the announcement that Google will be killing Timeline view as we know it came as a bit of a shock. The online timeline view is no longer accessible, and the only copy lives on your phone — unless you explicitly trigger a cloud backup. As with all things Google, if a feature is too good, it eventually gets killed (even if it's in the name of privacy). For all practical purposes, Google was about to move a decade and a half of my location history behind a Takeout export. In other words, I could download my past travels or watch them vanish. If I cared about those memories, it was clear that I had to figure out a way to take ownership of that data. So I did the obvious: I looked up a self-hosted alternative. Even at first glance, OwnTracks looked like the right tool. It's open source, it works entirely on personal infrastructure, and it stores data in plain text. The interface is reasonably polished, and there's no hidden monetization. All of which is exactly what I wanted in a Google Maps Timeline replacement. Setting it up took a weekend of tinkering on my Synology NAS, but the payoff was a location log that lives on hardware I've already paid for. I can choose what to do with that data, including integrating it with Home Assistant, and I can back it up wherever and as often as I like. Win-win. Setting up OwnTracks and importing my old Maps data Dhruv Bhutani / Android Authority Getting started with OwnTracks is an involved process, so I began with the basics. It needs an MQTT broker to shuttle messages between the phone app and the server. I installed Eclipse Mosquitto in a Docker container. The documentation is clear enough about ports and volume mounts. Once the broker was running, I pointed the OwnTracks app on my Pixel 9 Pro to the NAS's LAN IP and watched as JSON packets began appearing in the logs. While I'm fine with syncing my location history whenever I'm back home, you can also set up a reverse proxy and update your location in real time. Perhaps a project for another time. The second step was storage and playback. OwnTracks is split into two parts: the recorder, which, well, records your location, and the frontend, which displays it. The recorder connects to the MQTT broker we installed earlier, writes every update to disk, and exposes an HTTP API. Installing it was straightforward with Docker Compose, and you can also use Synology's Container Manager for an even easier setup. By default, the recorder serves a basic map on port 8083. It's not flashy, but it works. I saw my evening walk pop up almost in real time. And if you're just looking to log your location from here on out, you can skip the frontend altogether. If importing your Timeline history is important to you, like it was to me, you'll want to continue installing the frontend. The process is similar to installing the recorder and shouldn't take over an hour. Installing OwnTracks wasn't frictionless, but once it worked, it felt like stepping back into Google's old timeline view. Except this time, everything was self-hosted. Paired with the OwnTracks app on Android or iOS, the system also works offline. If the internet drops or you haven't set up external access, the data still lands on your NAS or home server as soon as your phone reconnects to the MQTT broker. It has to be said that Google does not make it easy to import your old location data. After running the export through Google Takeout, importing my old data took quite a bit of wrangling. Takeout handed me a folder of JSON files, and it took a community script to convert those into the format the recorder expects. Once that was done, I piped in a decade's worth of travels over to OwnTracks, restarted the service, and watched as it quietly added everything into the database. It wasn't frictionless, but once it worked, it felt like stepping back into Google's old timeline view, except this time, everything was self-hosted. Taking ownership of your personal data Dhruv Bhutani / Android Authority Despite the effort involved in setting up OwnTracks, the end result makes it worth it. The process taught me all the variables that go into getting the service running and reminded me why self-hosting feels liberating. If I ever need to troubleshoot things, it should be fairly trivial, and every fix is more or less final. I can choose to never update the service until a major release. More specifically, Google can't mark my NAS as deprecated. Which, you'd have realised by now, is a feature in itself. Additionally, if I want to tweak something, I can read the source code and add it in. Coming to the experience of using OwnTracks, it, predictably, isn't as full-featured as a product by Google. All you get is a map with location markers showing where you've been. Since the service leverages OpenStreetMaps, the data isn't as full-featured either. So, this might not be your best bet if you're trying to pinpoint an old restaurant you visited a decade ago, or expect add-ons like Street View to walk back in your own steps. Self-hosting gives me a private and more permanent solution for my location history timeline, and it's totally under my control. But for all its limitations, OwnTracks does a great job of helping you visualize where you were at a specific point in time. Depending on your needs, that might be enough. While OwnTracks doesn't offer heatmaps or trip labels, it does offer something more important: permanence. The data sits in JSON files, neatly organized by year and month. Any mapping library can read it. If I want a heatmap, I can generate one with Python in five minutes. There's a lot of flexibility here. Of course, privacy is the other most obvious win. Nothing leaves my network unless I push it. The recorder supports end-to-end encryption with a pre-shared key, so even if I sync data between sites, the raw coordinates stay protected. No analytics. No third-party servers unless I choose to use them. Since the service is fairly lightweight, hardware requirements have also been modest. You could run this on a spare Raspberry Pi if you choose to. MQTT and the recorder together use less than one percent CPU on a five-year-old NAS. The frontend is just Nginx serving static files. A full year of movement data, logged at ten-second intervals, weighs in at just a few hundred megabytes. That's a very tiny footprint, all things considered. I've also layered on additional conveniences for more peace of mind. For example, the location data gets backed up nightly not just to a second NAS, but also to — ironically — Google Drive. Is this for everyone? Dhruv Bhutani / Android Authority Could a less technically inclined friend replicate this? Probably, if they're comfortable using Docker Compose and a terminal. OwnTracks is not plug-and-play, but community write-ups help fill in the gaps. There are guides for Synology, Unraid, Raspberry Pi, and plain Linux. And the tooling improves each year. But I'd be kidding if I said it was easy. In an ideal world, we shouldn't have to run a service like this. But with Google's ham-fisted approach toward beloved services, it's probably for the best. If Google brings back the old Timeline tomorrow, I'd still stick with OwnTracks for its permanence. I'm not claiming OwnTracks is perfect. The mobile app occasionally stops publishing when Android's battery manager gets too aggressive. The map viewer lacks search. Importing large datasets can freeze the UI until processing completes. But these are tradeoffs I can live with. They're also not serious enough to impede usage. All that said, location history feels trivial until you lose it. Sometimes, the only record of a detour or a missed turn that led you to a cool spot is a dot on a map. That dot can jog a memory or simply remind you that you covered a lot of ground that year. Now that dot lives permanently on my NAS. If Google brings back Timeline tomorrow, I'd still stick with OwnTracks because of that permanence.

5 Googlers who started as interns share their advice on securing a full-time offer
5 Googlers who started as interns share their advice on securing a full-time offer

Yahoo

time37 minutes ago

  • Yahoo

5 Googlers who started as interns share their advice on securing a full-time offer

Five former Google interns shared tips on securing their internships and converting to full-time employees. They emphasized preparing early and aiming for underclassman-targeted internships. Some also suggested being communicative on the job and networking with other Google employees. With internship application season in full swing, you might be wondering how to make the most of your summer gig — and how to turn it into a full-time offer. Landing an internship at a Big Tech company is highly competitive, but having one on your résumé can help you get in early. Google offers general online guidance for navigating the hiring process, including practicing coding on platforms like CodeLab, Quora, and Stack Overflow. The company also suggests keeping your résumé to one page and considering skills relevant to the role. Business Insider spoke to five former Google interns who turned their summer gigs into full-time job offers at the tech giant. They shared their process of landing internships at Google and advice on landing a permanent offer. If you want direct insight from the perspectives of those who landed internships and turned them into full-time jobs, keep reading. Nancy Qi graduated in the winter and planned to return to Google full-time last June after spending three summers there as an intern, the first two with STEP and the last with Google's Software Engineering internship. Her primary advice: start early. Qi said she started taking data structure classes in high school at a community college and was practicing with leet code the summer before she started college, well before she had interviews lined up. When Qi started sending out applications in the fall of her freshman year, she said her résumé mainly had website initiatives and leadership experience for volunteering clubs from high school. She said she also had some part-time tutoring experience teaching math and English, "I think at that age, you're not expected to have so much CS experience or coding experience," Qi said. "So I think if you have some leadership experience or experience that shows your character, I think that's important at that time." During her internship, Qi said she thinks her strong suit was building relationships with her teammates by getting lunch with them every day. She said doing helped to create "team chemistry," and she also said it helped her feel excited for work and "motivated to pump out code." Islina (Yunhong) Shan interned at Google three times, beginning in the summer of 2022. She graduated from an accelerated computer science Master's program at Duke University and started a full-time role as a software engineer at the tech giant this spring. Shan first participated in STEP and later in the Software Engineering Internship, which is a more competitive program geared toward technical development. When she applied for her first internship, Shan said she had some hackathon experiences and some technical projects from school. After she sent her résumé, she was invited to two rounds of final interviews, both of which were technical and back-to-back, she said. Her advice to interns hoping to secure full time jobs: choose a team during the match process that you're actually interested in. "Interest is really important in driving you to finish the project," Shan said. She also said it's important to choose a team with a manager you can see yourself working with because you'll have to communicate with them regularly. When she first started her internship, she said she set unrealistic goals. Once she adjusted expectations, she started seeing more progress. Shan suggested seeking help if needed, adding that Google engineers tend to be friendly. Lydia Lam graduated from college in 2024 and participated in three Google internships, beginning with a STEP internship in 2021. In her internship résumé, Lam included a seven-week Google program for high-school graduates called the Computer Science Summer Institute. She also had experience with a summer program for girls who code and a tech consulting student organization that she joined during her first semester of college. Lam also recommended applying early in the recruiting cycle and said programs geared toward first and second-year students tend to be more aligned with that experience level. Lam said "strong engineering practices" are highly valued at the company and mentioned feeling imposter syndrome and wanting to impress her internship host. However, she said asking questions sooner rather than later can help projects get done more quickly. "It's much more efficient to ask someone else who knows a lot more than you try to figure it out longer," Lam said. She also suggested "producing a lot of artifacts," whether designs or other "tangible pieces of work," that can help show your skill set and contributions. Tawfiq Mohammad interned for two summers at Google before becoming a full-time software engineer at the tech giant. He said the summer after his first year in college, he didn't have any internships, so he took summer classes and did his own projects at home, like a gadget that read the license plate on his car and opened the garage without him having to press a button. Mohammad's biggest advice for incoming interns is to be prepared for imposter syndrome. Mohammad said the "biggest block" for him at first was being scared to do anything, and he suggested tuning out those negative feelings as much as possible. "You're going to feel very out of place initially," Mohammad told BI. "I honestly felt like I had no idea what I was doing." He said interns should set a goal to "learn as much as possible" from the more experienced employees and try to believe that they, too, felt like they didn't fully "know what they were doing" at one point. "They're really smart so you want to absorb as much information as you can from them," Mohammad said. He also suggested thinking "outside the box." "You're going to be given a project that summer and try to own that project. Try to own it from A to Z," Mohammad said. He also recommended networking with other interns and team members, adding that Google provides a number of opportunities to do so. "It's good to build up a good network of successful people and it's just good to network with people that are farther along the career path than you," Mohammad said. Zachary Weiss interned at Google for three summers before landing a full-time job as a software engineer in the Cloud department. He said he wasn't thinking about summer internships when he started as a freshman at the University of Michigan, but an older computer science major encouraged him to apply to Google's STEP program. Weiss said he was "ecstatic" to get the offer from Google a few months later. He went on to intern in multiple teams before returning full-time as a software engineer on the Cloud team. The Googler had two main takeaways from his internships, one of which was the importance of showing a "concerted effort" to management. Google interns are given a summer project, and Weiss said that being proactive and anticipating problems in advance is key to the job. He said a former internship manager complimented him for identifying an issue with a "one in a thousand" chance of occurring. He said interns should think about all the "weird edge cases" and speak up instead of waiting for a manager to say something. "You're given work that would have been going to a full-time employee," Weiss said, adding that employees value your opinion and voice. Weiss said communication was another key skill that he didn't anticipate would be so pivotal. He said that in school, students tend to focus on learning the principles, algorithms, and data structures involved in programming. In a workplace, though, verbal skills matter, too, Weiss said. "My day-to-day, I speak a lot more English. I read a lot more English. I read and write and talk and communicate a lot more than I am actually coding," Weiss said. "And I think communication is something that's really important." He said that at the University of Michigan, there were three courses about technical communications, like writing design memos, emails, and presentations. He said many students didn't take the class seriously, and it ended up teaching a crucial skill. Read the original article on Business Insider Error in retrieving data Sign in to access your portfolio Error in retrieving data Error in retrieving data Error in retrieving data Error in retrieving data

2 Stocks Down 77% and 19% to Buy Right Now
2 Stocks Down 77% and 19% to Buy Right Now

Yahoo

time37 minutes ago

  • Yahoo

2 Stocks Down 77% and 19% to Buy Right Now

PayPal is making some encouraging progress, but its stock still trades at a heavily beaten-down level. Prudential Financial is a high-yield insurance company that offers some protection from the consequences of rising debt levels. 10 stocks we like better than PayPal › Despite some significant bouts of volatility over the last year, the broader market has enjoyed a strong rally over that stretch. As of this writing, the S&P 500 (SNPINDEX: ^GSPC) has delivered a total return of 10.5% over the last 12 months. Indications that inflation might be moderating and hopes that interest rates will come down have played a big role in the gains. Even more than businesses in other sectors, the outlook for financial companies hinges heavily on macroeconomic conditions and the Federal Reserve's approach to interest rate policy. With that in mind, read on to see why two contributing analysts identified these discounted stocks as top ways to play different potential outcomes on the interest rate front. Image source: Getty Images. (PayPal): Despite some solid gains for the broader financials sector across 2025's trading, PayPal (NASDAQ: PYPL) stock is down roughly 17% year to date. Similarly striking, the company's share price is also down roughly 77% from the lifetime high it hit in 2021 amid pandemic-driven demand and favorable catalysts for financial stocks connected to the low-interest rate environment. While more competitors have moved into the payments and financial services space, PayPal still occupies a strong position in the industry. And while there have been a significant number of fast-growing upstarts in the space, few come close to matching PayPal's financial foundations and track record of dependable operational results. Admittedly, PayPal's total revenue increased just 1% year over year to $7.8 billion in this year's first quarter. Meanwhile, total payment volume conducted across its platforms rose 3% annually to $417.2 billion. On the other hand, the company has continued to do an impressive job with cost-reduction initiatives. Non-GAAP (generally accepted accounting principles) earnings per share for the period actually increased 23% year over year to hit $1.33. The company also closed the quarter out with $15.8 billion in cash against $12.6 billion in debt, even after returning $1.5 billion to shareholders through stock buybacks in the quarter. Despite some promising signs that its growth and turnaround initiatives in key business areas are moving in the right direction, PayPal stock is still trading at just 13.5 times this year's expected earnings. With a feasible path for the Fed to deliver at least one interest rate cut later this year, the company could soon be seeing a more favorable operating and valuation backdrop. Looking further out, there seems to be a good chance that President Donald Trump will move to replace current Fed Chairman Jerome Powell in 2026 with a new leader who is more amenable to lowering rates. With PayPal stock down big this year despite solid business foundations and encouraging performance on the margins front, the stock looks like a worthwhile play right now for investors seeking attractively valued stocks in the financials sector. Lee Samaha (Prudential Financial): This might get a bit esoteric, but bear with me! It's no secret that Elon Musk and President Trump have had a public spat over Trump's congressional spending bill, with Musk's primary concern being the implied increase in the national debt burden. As the chart demonstrates, Musk has a point about being concerned about debt. I have no wish to enter that debate here; suffice it to note that if the U.S. and its debt-to-GDP ratio are heading higher, then the U.S. may have to pay higher yields on its borrowing. In this scenario, long-term interest rates will likely be higher than the market thinks in the future, and provided there isn't another debt meltdown, that creates a favorable environment for life insurance companies like Prudential Financial (NYSE: PRU), a stock which is still down 19% from its lifetime high. While higher rates will lower the value of its current bonds (insurers match liabilities to assets), they will also increase the discount rate on its liabilities. Meanwhile, higher rates mean Prudential can buy bonds at higher yields in the future. It all adds up to make Prudential Financial a useful way to buy some insurance (hopeless pun intended) for a portfolio, and the stock's current 5.1% dividend yield doesn't hurt either. Before you buy stock in PayPal, consider this: The Motley Fool Stock Advisor analyst team just identified what they believe are the for investors to buy now… and PayPal wasn't one of them. The 10 stocks that made the cut could produce monster returns in the coming years. Consider when Netflix made this list on December 17, 2004... if you invested $1,000 at the time of our recommendation, you'd have $664,089!* Or when Nvidia made this list on April 15, 2005... if you invested $1,000 at the time of our recommendation, you'd have $881,731!* Now, it's worth noting Stock Advisor's total average return is 994% — a market-crushing outperformance compared to 172% for the S&P 500. Don't miss out on the latest top 10 list, available when you join . See the 10 stocks » *Stock Advisor returns as of June 9, 2025 Keith Noonan has no position in any of the stocks mentioned. Lee Samaha has no position in any of the stocks mentioned. The Motley Fool has positions in and recommends PayPal. The Motley Fool recommends the following options: long January 2027 $42.50 calls on PayPal and short June 2025 $77.50 calls on PayPal. The Motley Fool has a disclosure policy. 2 Stocks Down 77% and 19% to Buy Right Now was originally published by The Motley Fool Error in retrieving data Sign in to access your portfolio Error in retrieving data Error in retrieving data Error in retrieving data Error in retrieving data

DOWNLOAD THE APP

Get Started Now: Download the App

Ready to dive into a world of global content with local flavor? Download Daily8 app today from your preferred app store and start exploring.
app-storeplay-store