- Connect the mesh extender’s adapter to a power source.
- Connect the mesh extender to the router using the ethernet cables.
- Wait for the blinking white status light to turn green on the mesh extender. (The green status color means the mesh extender is now paired to your router).
Picture-in-picture in Google Meet will now open automatically when switching tabs
What’s changing
Getting started
- Admins: There is no admin control for this feature.
- End users: You can turn this feature off from your Google Chrome settings. Visit the Help Center to learn more about using picture-in-picture with Google Meet.
Rollout pace
- Rapid Release domains: Gradual rollout (up to 15 days for feature visibility) starting on August 26, 2024
- Scheduled Release domains: Gradual rollout (up to 15 days for feature visibility) starting on September 10, 2024
Availability
- Available to all Google Workspace customers, Workspace Individual Subscribers, and users with personal Google accounts
Resources
Source: Google Workspace Updates
Automate your workflows on Google Chat with IFTTT and UKG Flow integrations
What’s changing
Getting started
- Admins: UKG Flow requires admins to install the app on their users’ behalf. Visit the Help Center to learn more about installing Marketplace apps for your organization.
- End users:
- Get started with the IFTTT’s Chat integration here.
- Once UKG Flow is installed by your admin, you can use it freely in Google Chat.
Rollout pace
- These integrations are available now.
Availability
- Available to all Google Workspace customers, Workspace Individual Subscribers, and users with personal Google accounts
Resources
Source: Google Workspace Updates
Google Workspace Updates Weekly Recap – August 23, 2024
1 New update
Unless otherwise indicated, the features below are available to all Google Workspace customers, and are fully launched or in the process of rolling out. Rollouts should take no more than 15 business days to complete if launching to both Rapid and Scheduled Release at the same time. If not, each stage of rollout should take no more than 15 business days to complete.
Previous announcements
Completed rollouts
The features below completed their rollouts to Rapid Release domains, Scheduled Release domains, or both. Please refer to the original blog posts for additional details.
- Admins can now centrally set default grading settings for teachers in their district (Grading Categories and Grading Scales)
- “Take notes for me” in Google Meet is rolling out soon; pre-configure access with a new admin setting (Admin setting)
- Save time managing your Meet Hardware fleet with new device filters
- Save files scanned in the Google Drive Android app as a .JPEG
- Google Meet on Android is now available for Logitech Rally Bar Huddle
- Expanding multi-party-approvals to domain-wide-delegation actions
- Introducing Student Groups in Google Classroom
- Refine emails faster with updates to Help me write in Gmail
- Google Meet increases ultra-low latency live streaming support to 100,000 viewers in distributed audiences
- Third-party smart chip resource creation now available in Google Docs
Paused rollouts
For a recap of announcements in the past six months, check out What’s new in Google Workspace (recent releases).
Source: Google Workspace Updates
Chrome Dev for Desktop Update
The Dev channel has been updated to 130.0.6669.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.
Daniel Yip
Google Chrome
Source: Google Chrome Releases
Adding 16 KB Page Size to Android

A page is the granularity at which an operating system manages memory. Most CPUs today support a 4 KB page size and so the Android OS and applications have historically been built and optimized to run with a 4 KB page size. ARM CPUs support the larger 16 KB page size. When Android uses this larger page size, we observe an overall performance boost of 5-10% while using ~9% additional memory.
In order to improve the operating system performance overall and to give device manufacturers an option to make this trade-off, Android 15 can run with 4 KB or 16 KB page sizes.
The very first 16 KB enabled Android system will be made available on select devices as a developer option. This is so you can use the developer option to test and fix (if needed) your applications to prepare for Android devices with 16 KB page sizes in the near future.
Details
In most CPUs, dedicated hardware called memory management units (MMUs) translate addresses from what a program is using to a physical location in memory. This translation is done on a page-size basis. Every time a program needs more memory, the operating system needs to get involved and fill out a “page table” entry, assigning that piece of memory to a process. When the page size is 4 times larger, there is 4 times less bookkeeping. So, the system can spend more time making sure your videos look great, games play well, and applications run smoothly, and less time filling out low-level operating system paperwork.
Unlike 32-bit/64-bit mode, a page size is not an Application Binary Interface (ABI). In other words, once an application is fixed to be page size agnostic, the same application binary can run on both 4 KB and 16 KB devices.
In Android 15, we’ve refactored Android from the ground up to support running at different page sizes, thus making it page-size agnostic.
Major OS Changes
On new Android 15 based devices:
- The compile-time PAGE_SIZE macro is replaced at runtime with getpagesize(2).
- All OS binaries are 16 KB aligned (-Wl,-z,max-page-size=16384). 3rd party applications / libraries may not be 16 KB aligned.
- All OS binaries are built with separate loadable segments (-Wl,-z,separate-loadable-segments) to ensure all memory regions mapped into a process are readable, which some applications depend on.
Many of our other OS components have been rewritten to avoid assuming the page size and to optimize for larger page size when available.
Filesystems
For performant operation, file system block size must match the page size. EROFS and F2FS file systems have been made 16 KB compatible, as has the UFS storage layer.
On 4 KB systems, ELF executable file size increases due to additional padding added for 16 KB alignment (-Wl,-z,max-page-size=16384 option), but several optimizations help us avoid this cost.
- Sparse read-only file systems ensure that zero pages created for additional padding for 16 KB alignment are not written to disk. For example, EROFS knows a certain range of a file is zero filled, and it will not need to do any IO if this part of the file is accessed.
- Read-writeable file systems handle zero pages on a case-by-case basis. For example, In Android 15, for files installed as part of applications PackageManager reclaims this space.
Memory Management
- The Linux page cache has been modified not to read ahead for these extra padding spaces, thereby saving unnecessary memory load.
- These pages are blank padding, and programs never read this. It’s the space in-between usable parts of the program, purely for alignment reasons.
Linux Kernel
The Linux kernel is deeply tied to a specific page size, so we must choose which page size to use when building the kernel, while the rest of the operating system remains the same.
Android Applications
All applications with native code or dependencies need to be recompiled for compatibility with 16 KB page size devices.
Since most native code within Android applications and SDKs have been built with 4 KB page size in mind, they need to be re-aligned to 16 KB so the binaries are compatible with both 4 KB and 16 KB devices. For most applications and SDKs, this is a 2 step process:
- Rebuild the native code with 16 KB alignment.
- Test and fix on a 16 KB device/emulator in case there are hardcode assumptions about page size.
Please see our developer documentation for more information.
NOTE: If you are an SDK or tools developer, you should add 16 KB support as soon as possible so that applications can work on 16 KB using your SDK or tools.
Developing for 16 KB devices
There are no production Android devices available today or expected for the Android 15 release that support a 16 KB page size. In order to fix this problem, we are taking steps to work with our partners to make a developer option available on existing devices. This developer option is meant for application development and testing. We are also making a 16 KB emulator target available for developers in Android Studio.
16 KB Developer option on device
In Android 15, we implemented a developer option that lets users switch between 16 KB and 4 KB page size on the device in order to test their application with either of the page sizes. This option is available on Pixel 8 and Pixel 8 Pro starting in the Android 15 QPR1 Beta, and we're collaborating closely with SoC and OEM partners to enable the option on additional devices soon.

When built for 16 KB pages, the same binary will work with 4 KB and 16 KB devices, however the Linux kernel has to be separate. In order to solve this problem, we’ve added a way to include an extra kernel you can switch to as a developer option. Incrementally compressed, with one copy for each page size and takes ~12-16 MB of space on disk.
Using the 16 KB developer option will require wiping the device once and an unlocked bootloader. Following flashing, developers will be able to switch between a 4 KB and 16 KB mode by toggling the developer option over a reboot.
If you are a device manufacturer or SoC developer, see our instructions on how to enable and use this.
16 KB on x86_64 desktops
While 16 KB pages are an ARM-only feature, we recognize that many developers are using emulators on x86_64 hardware. In order to bridge this gap for developers, we’ve added support to emulate 16 KB page size for applications on x86_64 emulators. In this mode, the Kernel runs in 4 KB mode, but all addresses exposed to applications are aligned to 16 KB, and arguments to function calls such as mmap(...MAP_FIXED...) are verified to be 16 KB aligned.
To get started, you can download and run the 16 KB pages emulator inside the Android Studio SDK manager. This way, even if you don’t have access to ARM hardware, you can still ensure your applications will work with 16 KB page size.

Future
In this post, we’ve discussed the technical details of how we are restructuring memory in Android to get faster, more performant devices. Android 15 and AOSP work with 16 KB pages, and devices can now implement 16 KB pages as a development option. This required changes from the bottom to the top of the operating system, in our development tooling, and throughout the Android ecosystem.
We are looking forward to application and SDK developers now to take advantage of these options and prepare for more performant and efficient Android devices in near future.
Source: Android Developers Blog
New host controls for add-ons in Google Meet
What’s changing
Getting started
- Admins: There is no admin impact or action required.
- End users:
- This feature will be ON by default. It can only be configured from laptop and desktop devices, however it will apply to all meeting participants, including those using mobile devices.
- Your setting configuration will apply to all future instances of recurring meetings.
- Visit the Help Center to learn more about using add-ons with Google Meet.
Rollout pace
- Rapid Release domains: Available now.
- Scheduled Release domains: Full rollout (1–3 days for feature visibility) starting on August 23, 2024
Availability
- Available for all Google Workspace customers
Resources
Source: Google Workspace Updates
Beta Channel Update for ChromeOS / ChromeOS Flex
Hello All,
The Beta channel has been updated to 128.0.6613.75 (Platform version: 15964.32.0) for most ChromeOS devices.
If you find new issues, please let us know one of the following ways:
- File a bug
- Visit our Chrome OS communities
- General: Chromebook Help Community
- Beta Specific: ChromeOS Beta Help Community
- Report an issue or send feedback on Chrome
Google ChromeOS.
Source: Google Chrome Releases
Gemma explained: What’s new in Gemma 2
Source: Google Developers Blog
7 things I tried during my first week with the Pixel 9
