Dispatch Issue # 2: Google I/O Special

šŸØ Inside scoop from Google I/O, interesting updates from the event & a tip to using Gemini in Android Studio without compromising sensitive IP
Vinay Gaba Profile Image
Vinay Gaba on May 20, 2024
Hero Image

Good Morning!! Welcome to JetpackCompose.appā€™s Dispatch, the newsletter that quenches your Android thirst with a splash of Compose and a twist of entertainment.

This is Issue #2 and itā€™s the Google I/O special where I cover some of my observations and interesting conversations that I had at the event. To nobodyā€™s surprise, "AI" was the buzzword du jour at Google I/O 2024 ā€” so omnipresent, they might as well rename it Google "AI"O šŸ¤£ Thankfully, your homeboy is here with a filter to sift out the real gems from all this noise, making sure you stay ahead and shine in front of your peers šŸ˜Ž

Vinay Gaba at Google I/O

Making the most of the Google I/O sign

šŸØ Inside Scoop

  1. Attending developer events is always a highlight for me, not just for the sessions but for the invaluable conversations with friends and colleagues. Throughout my discussions with Googlers at this yearā€™s Google I/O, a recurring theme was performance. Itā€™s clear that improving performance is a priority for everyone, and steps are being taken at the framework level to ensure all developers benefit seamlessly. This approach resonates with many of us who, as early adopters, are counting on Google to smooth out existing issues with each new release.
  2. I spent a good deal of time talking with Leland Richardson, the Tech Lead for Jetpack Compose. Thereā€™s a 143% chance that you recognize him from his influential talks on the mental model behind Jetpack Compose or his popular live streams where he delves into building the Compose Compiler and creating a Compose-first app. Leland is deeply involved in enhancing performance within the framework through various initiatives. These include-
    1. Minimizing the number of groups that the Compiler adds to Composable functions (Pull Request)
    2. Improving prefetching behavior in LazyLayouts to reduce lag (Pull Request)
    3. Optimizing the Semantics system, and
    4. Overseeing the Modifiers system overhaul, which has already been implemented in the stable versions of Compose.

Hanging out with friends at Google I/O (L-R) Leland Richardson (Jake Gyllenhaal impersonator, Tech Lead - Jetpack Compose), Kaushik Gopal (Principal Engineer at Instacart, Co-creator of the Fragmented Podcast) and Vinay Gaba (Me)

  1. One significant announcement from I/O was the dedicated support for Kotlin Multiplatform (KMP) on Android. While the implications of this may not be immediately apparent, thereā€™s a couple things worth noting-
    1. Some Google apps will begin using KMP to share business logic across different platforms, as demonstrated by the Google Workspaces (Docs, Sheets, etc) team.
    2. Moreover, an array of Jetpack libraries, including Room, Lifecycle, and ViewModel, will soon support KMP. This is significant as it addresses previous ecosystem limitations and bridges gaps that previously existed in the KMP landscape
    3. During these conversations, I also expressed concerns regarding the proliferation of similar concepts like Kotlin Native, Compose Multiplatform, and Kotlin Multiplatform Mobile (KMM). Each has its place, but the array of options can be overwhelming for developers, especially those new to the platform. Itā€™s a dynamic area that could potentially simplify development across platforms or add to the confusion. The future will clarify whether these tools will streamline our workflows or not but I remain optimistic.
  2. In a shock to absolutely nobody, developers will now be able to harness the power of Large Language Models (LLMs) directly within Android Studio. What used to be known as 'Android Studio Bot' has been freshly minted as 'Gemini in Android Studio'. More than just a chat interface, Gemini introduces Generative AI features as targeted actions and intents throughout the IDE, which I anticipate will prove immensely useful. While itā€™s designed to understand your codebase intimately, you can opt-out if youā€™re hesitant about sharing your intellectual property. However, be aware that opting out might limit its functionality. Intriguingly, you can manage what you share with Gemini in a very detailed manner ā€” and that's exactly what we're diving into in todayā€™s 'Tipsy Tip'. Scroll down to discover how you can finely tune what you share!

Gemini Actions in Android Studio Actions inside Android Studio that are powered by Gemini

Divider

šŸ˜† Dev Delight

Everyone is Gemini meme I AM GEMINI šŸ¤–
Source

Everyone is Gemini meme Is it true or is it true? šŸ™ˆ
Source

šŸ„‚ Tipsy tip

Want to leverage the cutting-edge features of Gemini in Android Studio, ensuring you get contextually rich results that understand your codeā€”without compromising the confidentiality of sensitive IP? Hereā€™s one way to strike that balance.

Just as you might use a .gitignore file to keep certain files out of your Git repository, you can use a .aiexclude file in your source code directory. This special file ensures that while you harness the full power of Gemini's AI capabilitiesā€”including the enriched chat experience and advanced editor features like intention actions and code completionsā€”your private or sensitive bits remain just that: private.

The setup for .aiexclude mirrors the familiar syntax of .gitignore, offering you granular control over what gets shared with Gemini. By fine-tuning what the AI sees, you can safely make the most of these smart features without any privacy concerns.

Everyone is Gemini meme

Divider

šŸ¤” Interesting tid-bits

  1. Spotlight on Screenshot Testing: The debut alpha of Compose Preview Screenshot Testing just hit the scene, ushering in first-class support for screenshot testing within the Android ecosystemā€”a practice many teams have already adopted using various solutions and open-source libraries. This new development simplifies the process for developers to integrate screenshot testing into their codebases. For those already using setups like Showkase + Paparazzi/Roborazzi, itā€™s worth noting that this feature isnā€™t ready for production just yet and isnā€™t a direct substitute for your current systems. It requires writing previews in a separate screenshotTest source set, unlike the streamlined approach where previews automatically convert to testsā€”something that major companies like Airbnb and Stripe utilize. This area is still evolving, and itā€™s thrilling to see such focus on enhancing screenshot testing.

    1. [NOT SPONSORED] A shoutout to Emerge Tools, early supporters of JetpackCompose.app, who offer a screenshot testing service that automatically picks previews, manages screenshots in the cloud and provides diff reports on each PR. Definitely worth checking out!
  2. Type Safety in Jetpack Navigation: A long-awaited update in Jetpack Navigation is hereā€”the latest alpha introduces type safety, addressing the clunky use of strings for routes/destinations. That approach didnā€™t work very well in larger teams and I suspect thatā€™s one large reason why apps at scale donā€™t use Jetpack Navigation very often. I especially appreciate that one of their guiding principles was minimizing how ā€˜infectiousā€™ Navigation code is: e.g. how easy is it to swap out this library with another one. As a result, the new API is non-invasive; it doesnā€™t mandate implementing any interfaces, nor do the routes/destinations require navigation dependencies where they're defined šŸ‘šŸ» Hereā€™s a glimpse at how streamlined defining a destination can be, while still maintaining type safety:

// Define a home screen destination that doesn't take any arguments
@Serializable
object HomeScreen

// Define a listing destination that takes an ID
@Serializable
data class Listing(val id: String)
  1. Adapting to Foldables: As foldable devices become more common, adapting our apps to utilize the available space effectively is crucial. Previously, implementing responsive layouts in Compose required piecing together Window Size Classes from various Google samples. Now, thanks to recent updates, everything you need is neatly bundled in the androidx.compose.material3.adaptive library. To further reduce the need for repetitive coding, Google has released several ready-to-use screen layouts tailored for common UI patterns such as list-detail, navigation rail, and supporting pane.

Divider

šŸŽ„ Media Player

Thereā€™s a ton of new content that gets published after each I/O and it can get overwhelming. So let me make it easier for you šŸ¤ Here are 2 hand picked videos that I highly recommend watching and some information about what to expect from them šŸ‘€

Analyze and improve performance of your Compose apps

Check out this practical talk that guides you through a codelab full of exercises for identifying and fixing performance bottlenecks in your Compose apps. It thoroughly explores all the tools you have at your disposal to debug and enhance performance. I highly recommend either working through the codelab yourself or watching the videoā€”choose the format you enjoy most.

Designing scalable Compose APIs

Another practical video that dives in the wonderful world of API design. Iā€™ve always felt this topic deserves more airtime, so Iā€™m glad to see this investment. Thereā€™s a markdown file in the androidx repository that has existed since the early days of Compose which covers a lot of the same topics. However, I quite like how this information was presented in the video so I recommend watching it. If you're spearheading Compose at your workplace, consider sharing it with your team. And while you are doing that, also share this newsletter with them so that they always stay ahead of the curve šŸ˜‰

Divider

If you found this useful and learnt something new, I would be immensely grateful if you could share it within your networks. Hereā€™s a prefilled tweet that you can share šŸ™šŸ» It costs you nothing but makes me feel really amazing to see that you found it useful. Will genuinely make my day šŸ„ŗ

Until next time, hereā€™s hoping that your bugs are minor and your compilations are error free,

Welcome to the VIP club
To read the rest of the post, subscribe and never miss an issue!
Already a subscriber? Use the same email id to login again.