Author Archives:
Improvements To Help Me Write in Gmail
- Topic contextualization: The feature can now connect to Google Drive and Gmail based on your prompt. It will then use the context from these apps to automatically insert relevant information into the email draft, reducing the time you spend toggling between apps to find specific details.
- Tone and style personalization: Help me write can also now create personalized email drafts that match the tone and style of your previously written emails.
![]() |
| Before and after of a generated email |
- Responding to inquiries from customers and partners
- Distributing information, documents, or materials to collaborators
- Reporting progress, milestones, and project-related issue to leadership
- Seeking assistance or answers from team
- Providing or asking for feedback from peers
- Sharing team announcements or progress reports to the organization
- Introducing new projects
- Exploring potential partnerships
- Teacher-parent- communications
- Grant proposals
Getting started
- Admins: This feature is available by default if both Gemini for Workspace in Gmail is enabled and Workspace Intelligence access to Gmail is enabled.
- End users: This feature is available by default and activated for prompts that have relevant context. Visit the Help Center article to learn more about drafting emails with Gemini in Gmail.
Rollout pace
- Rapid Release and Scheduled Release domains: Extended rollout (potentially longer than 15 days for feature visibility) started on May 5, 2026
Availability
- Business: Business Starter, Standard, and Plus
- Enterprise: Enterprise Starter, Standard, and Plus
- Consumer: Google AI Plus, Pro, and Ultra
- Education Add-ons: Google AI Pro for Education
Resources
- Google Help: Draft emails with Gemini in Gmail
Source: Google Workspace Updates
Chrome Dev for Desktop Update
The Dev channel has been updated to 150.0.7828.2 for Windows, Mac and Linux.
A partial list of changes is available in the Git log. Interested in switching release channels? Find out how. If you find a new issue, please let us know by filing a bug. The community help forum is also a great place to reach out for help or learn about common issues.
Chrome Release Team
Google Chrome
Source: Google Chrome Releases
Data Manager API: Introducing support for Google Ads store sales and more event ingestion use cases for Google Analytics
We're excited to announce several significant enhancements to the Data Manager API. This release introduces support for uploading store sales conversions to Google Ads and broadens support for Google Analytics event ingestion.
Store sales conversions
The Data Manager API offers a streamlined ingestion workflow for sending store sales conversions to Google Ads. This workflow eliminates the need to create and monitor multiple offline jobs and replaces those jobs with a single API request. You can also leverage additional features such as confidential matching, encryption for user identifiers, and support for sending multiple items per event in CartData. To use this feature, your Google Ads account must meet certain eligibility requirements.
Google Analytics web and app events
Building on our existing capabilities, we've expanded support for sending events to Google Analytics within the Data Manager API.
- Web and app data stream event ingestion: You can now send any event to both your Google Analytics web and app data streams, provided they're not reserved events.
- Data Manager API is an alternative to Measurement Protocol for sending recommended and custom events directly to Google Analytics.
- Data Manager API's unified schema now supports important metadata like app instance ID, event location, and mobile device information for app events.
- Event routing: Configure a destination using your Firebase App ID or Measurement ID to send an event to your Google Analytics app stream or web stream respectively.
- Expanded support for events sent as an additional data source: The Data Manager API now supports sending any event with a transaction ID to both web and app data streams as an additional data source for your tag or Google Analytics for Firebase (GA4F) SDK implementation.
- This feature is no longer restricted to
purchaseevents sent to web data streams. - This feature is limited to Google Analytics properties on an allowlist; please fill out this form if you're interested in adding your property to the allowlist.
- This feature is no longer restricted to
Get started
- Upgrade your existing store sales workflows to gain access to future improvements and features:
- Start sending events to Google Analytics with the Data Manager API:
Connect with us
If you have any questions or want to discuss this post, please reach out to us on our "Google Advertising and Measurement Community" Discord server. You can also contact us through the support page if you have an issue or need help with the API.
If you're interested in becoming a data partner, please fill out the Partner Interest Form.
Source: Google Ads Developer Blog
Dev Channel Update for ChromeOS / ChromeOS Flex
The ChromeOS Dev channel is being updated to OS version 16667.5.0 (Browser version 149.0.7827.4) for most ChromeOS devices.
- File a bug
Visit our ChromeOS communities
General: Chromebook Help Community
Beta Specific: ChromeOS Beta Help Community
Interested in switching channels? Find out how.
Luis Menezes
Google ChromeOS
Source: Google Chrome Releases
Google Workspace Studio available in more languages
- French
- German
- Italian
- Japanese
- Korean
- Portuguese
- Spanish
Getting started
- Admins: There is no admin control for this feature.
- End users: Try out Google Workspace Studio, and visit the Help Center to learn more.
Rollout pace
- Rapid Release and Scheduled Release domains: Full rollout (1–3 days for feature visibility) starting on May 7, 2026
Availability
- Business: Business Starter, Standard, and Plus
- Enterprise: Enterprise Standard and Plus
- Education: Education Fundamentals, Standard, Plus, Teaching and Learning
- AI Add-ons: Google AI Pro for Education
Resources
- Google Workspace Admin Help: Workspace Studio admin help
- Google Help: Workspace Studio Help
- Google Workspace Learning Center: Workspace Studio training and help
- Google Workspace Blog: Introducing Google Workspace Studio: Automate everyday work with AI agents
- YouTube: Google Workspace Studio video playlist
- Discord Channel: Google Workspace Studio Discord
Source: Google Workspace Updates
Chrome Beta for Android Update
Hi everyone! We've just released Chrome Beta 149 (149.0.7827.5) for Android. It's now available on Google Play.
You can see a partial list of the changes in the Git log. For details on new features, check out the Chromium blog, and for details on web platform updates, check here.
If you find a new issue, please let us know by filing a bug.
Chrome Release Team
Google Chrome
Source: Google Chrome Releases
Managing your integrations at scale: Ads DevCast E4
Scaling an advertising integration is more than just writing code—it requires a deep understanding of efficiency, resilience, and auditability. In Episode 4 of Ads DevCast, "Managing your integrations at scale," we break down universal architectural best practices and product-specific solutions to help you optimize your advertising integrations.
Whether you are working with the Google Ads API, Google Ads scripts, Data Manager API, DV360, or Google Analytics, here is a summary of the key takeaways to build high-performance, scalable systems.
Universal Principles of Robust Integrations
- Respect Rate Limits: Rate limits are a reality of using APIs at scale. Understand your limits beforehand to prevent lockouts and maintain a healthy integration. Read the error messages — they may contain instructions on what to do next. For transient or retry-able errors, don't hammer the server with rapid retries. Instead, implement exponential back-off with jitter to give the system time to recover.
- Prioritize Logging and Monitoring: Always consider logging in production where appropriate. Capture crucial metadata, like the Google Ads API
request_id, in your structured logs to trace failures instantly. If a call is erroring, write that error payload to logs. Set up proactive alerts to catch errors before they impact operations. - Use Official Client Libraries: While direct REST/gRPC calls are supported in many of our products, using official libraries saves development time and handles heavy lifting (e.g., serialization and authentication) out of the box.
- Cache Smartly: Reduce redundant queries. If you are querying historical data that will no longer change, cache it locally to save bandwidth and rate limits.
Product-Specific Best Practices
- Google Ads API: Optimize efficiency by Batching Operations. Group operations logically to reduce round-trips. Order your operations correctly to improve execution efficiency.
- Data Manager API: Batch ingestion requests to process events efficiently. Understand the difference between synchronous errors (structural issues returned instantly that reject the whole batch) and asynchronous validation (monitored via the Diagnostics endpoint).
- Google Ads scripts: Avoid sequential iterations when dealing with many accounts at once. Use Bulk Uploads with CSV tables to apply scaled operations, and leverage the
executeInParallelmethod for MCC scripts to run up to 50 concurrent execution threads. - Display & Video 360 API: Utilize Structured Data Files (SDFs) to manage YouTube line items and ad group bulk operations that aren't natively supported by the API.
- Google Analytics: Enable daily BigQuery Exports for event-level data, and utilize Long-running Asynchronous Report Tasks in the Analytics Data API v1alpha to build scalable, customized reports without HTTP timeouts.
Next Steps:
Watch the full episode on our YouTube channel (or listen on YT Music)
Check out our Advertising and Measurement Developer Hub.
Join our community on Discord and share your scaling stories or questions with Googlers and other developers.
Learn more in our guides below:
- Google Ads API Best Practices and Batch Processing
- Google Ads scripts Bulk Upload and Best Practices
- Analytics BigQuery Solution and Report Tasks Fundamentals
- Data Manager API Best Practices, Limits, and Diagnostics
- Display & Video 360 Structured Data Files (SDFs)
Source: Google Ads Developer Blog
Chrome Dev for Android Update
Hi everyone! We've just released Chrome Dev 150 (150.0.7828.3) for Android. It's now available on Google Play.
You can see a partial list of the changes in the Git log. For details on new features, check out the Chromium blog, and for details on web platform updates, check here.
If you find a new issue, please let us know by filing a bug.
Chrome Release Team
Google Chrome
Source: Google Chrome Releases
A look ahead: Making it easier and faster to publish safer apps
The mobile ecosystem is always evolving, bringing both new opportunities and new threats. Through these changes, Android and Google Play remain committed to ensuring that billions of users can continue to enjoy their apps with confidence and developer innovation can thrive. Earlier this year, we shared how Android and Google Play kept the ecosystem safe in 2025 by deepening our investments in AI and real-time defenses. Today, we’re giving you a look at how we’re making it easier and faster than ever for millions of developers to publish safer apps.
Simpler ways to build safer apps from the start
To help you catch potential issues before you hit submit, we’re integrating insights and new customized guidance built with AI to your publishing journey:
- Catch policy issues while you code with expanded Play Policy Insights in Android Studio, which now offer warnings for common issues, like missing login credentials. Later this year, when you choose to connect your Play developer account directly to Android Studio, you’ll get tailored insights.
- Choose the right SDKs with confidence by leveraging SDK Index. Later this year, we are bringing SDK insights directly into your development workflow so you can instantly see which SDKs comply with Play policies.
More powerful protection for your business and users
With new ways to stay ahead of fraud and abuse, and better tools to protect your users, we’re also making it easier to secure your app’s revenue and reputation.
- Detect security threats and abuse faster with our stronger Play Integrity API, which developers rely on to make billions of checks everyday to help keep their business secure. With significantly shorter warm-up latency, you can use these real-time checks in your most speed-critical user journeys, like logins or payments, to catch unauthorized access and risky interactions.
- Simplify how you manage user privacy with easy-to-integrate tools like the contact picker and location button to give users clearer choices. We're also updating our policies to raise the standard for user privacy.
- Future-proofing app signing security on your behalf. We’re adding support for post-quantum cryptography in Play App Signing this year, which will protect your apps and app updates from potential threats with the emergence of quantum computing.
Faster, more predictable app publishing
We know how important it is to maintain a predictable release cycle, so we’re making the publishing process faster and more transparent.
- Avoid unexpected review rejections with our expanding pre-review checks, which now identify unnecessary photo permission requests and other common violations before you submit.
- Improve the speed and predictability of your review cycles by using the new release status API to check if your release is approved and published. We also added a new way for you to block new commits if a review is already in progress, so you don’t unintentionally restart your place in the queue.
- Publish your releases even faster when we change our review architecture later this year to enable parallel publishing and faster reviews for your test tracks. You’ll be able to isolate your closed, open, and production tracks so that a review on one track no longer holds up updates on another.
- Track your release history with the Submission history log later this year. Built at your request, this feature provides a complete record of every time you send an app or update for review and its status. This makes it easier for your team to coordinate and troubleshoot without digging through multiple menus.
- Manage business changes securely with the account transfers feature to help you move ownership to new partners, entities, or team members (video). We’ve designed this highly developer-requested feature with safeguards to protect your business from fraud and account hijacking.
- Get the right policy support when you need it. In the coming months you'll see AI-powered recommendations directly in your Play Console that help you resolve minor issues immediately. For more complex issues, you can create a ticket to connect with our policy specialists. We’re also giving new developers more guided support, including new Play Academy courses, to publish their first app with confidence. Later this year, we’ll expand this coaching experience for new developers.
Stronger security across the ecosystem
Finally, we’re bringing developer verification to the entire Android ecosystem to add another layer of security and make it much harder for malicious actors to repeatedly spread harm. Starting in September, these protections will roll out in select countries to help users feel more confident in the apps they download and without changing most users’ install experience. We will also update Android Bench to uplift the entire ecosystem’s ability to build and launch safer, higher quality apps using generative AI.
What’s next
Google Play is committed to helping you grow your business while keeping users safe, and we appreciate your continued feedback on the tools and programs. Thank you for partnering with us to make Android and Google Play a secure, trusted platform for everyone.


