Close Menu
Nekopoi apk

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    4 Great Apps and Games for the NBA Season

    October 20, 2025

    Elevating your Android deep linking

    October 20, 2025

    Amazon’s AWS Disruption Creates Outages for Hundreds of Websites for Hours

    October 20, 2025
    Facebook X (Twitter) Instagram
    Nekopoi apk
    Get the NekoPoi APK
    • 🏠 Home
    • 📲 For iOS
    • 💻 For pc
    • 🔃 Old Version
    • 📝 Latest Updates
    Nekopoi apk
    Home»Latest Updates»Resizable Compose Preview, monthly releases and smarter AI
    Latest Updates

    Resizable Compose Preview, monthly releases and smarter AI

    David I. MeeksBy David I. MeeksSeptember 5, 2025No Comments7 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    [ad_1]


    Posted by Paris Hsu – Product Manager, Android Studio

    Welcome to the Android Studio Narwhal Feature Drop 3 release. This update delivers significant improvements across the board to enhance your productivity. While we continue to innovate with powerful, project-aware AI assistance in Gemini, this release also brings fundamental upgrades to core development workflows. Highlights include a resizable Compose Preview for faster UI iteration and robust app Backup & Restore tools to ensure smooth app transfers across devices for your users. These additions, alongside a more context-aware Gemini, aim to streamline every phase of your development process.

    These features are delivered as part of our new monthly release cadence for Android Studio, which allows us to provide improvements more frequently. Learn more about this change and how we’re accelerating development with monthly releases for Android Studio.

    What’s New in Android Studio Narwhal 3 Feature Drop

    Develop with AI 🚀

    Since launching Gemini in Android Studio, we’ve been working hard to introduce features and integrations across Studio with the needs of Android developers in mind. Developers have been telling us about the productivity benefits AI brings to their workflow — such as Entri, who reduced their UI development time per screen by 40%.

    With this release, enhanced how you interact with Gemini — with improved options for providing project context, file attachments, and support for image attachments.

    AGENTS.md: providing project-level context to Gemini

    AGENTS.md is a Markdown file that lets you provide project-specific instructions, coding style rules, and other guidance that Gemini automatically uses for context. The AGENTS.md file can be checked into your version control system (like Git), ensuring your entire team shares the same core instructions and receives consistent, context-aware AI assistance. AGENTS.md files are located right alongside your code; use multiple AGENTS.md files across different directories for more granular control over your codebase.

    screenshot of AGENT.md automatically included in Context Drawer in Android Studio

    AGENTS.md automatically included in Context Drawer

    screenshot of Sample AGENT.md file in Android Studio

    Sample AGENTS.md file

    We’re making it much easier to provide rich, on-the-fly context. That’s why we are also excited to share that two powerful features, Image Attachment and the @File Context, are graduating from Studio Labs and are now stable:

    Image attachment – Gemini in Android Studio

    The ability to attach images to your queries with Gemini is now available in the stable channel! This feature accelerates UI development and improves architectural understanding. You can:

      • Generate UI from a mock-up: Provide a design image and ask Gemini to generate the Compose code.
      • Understand an existing screen: Upload a screenshot and ask Gemini to explain the UI’s component structure and data flow.
      • Debug UI bugs: Take a screenshot of a bug, circle the issue, and ask Gemini for solutions.

    screenshot of image attachment in Gemini in Android Studio

    Image attachment in Gemini in Android Studio

    @file attachment – Gemini in Android Studio

    The File attachment and context drawer are also graduating from Studio Labs! Easily attach relevant project files to your prompts by typing @ in the chat window. Gemini can then use the full context of those files to provide more accurate and relevant answers. Gemini will also suggest files it thinks are relevant, which you can easily add or remove.

    screenshot of evoking @file attachment in Android Studio

    Evoke @file attachment

    What’s next: Deeper integration with MCP support

    Looking ahead, in our summer episode of #TheAndroidShow, we went behind the scenes with Android Studio’s new MCP (Model Context Protocol) support. This protocol enhances Gemini’s interoperability with the broader developer ecosystem, allowing it to connect to tools like GitHub. Learn how MCP support can make Gemini’s Agent Mode even more helpful for your workflow, and try it today in the Canary channel.

    Optimize and refine ✨

    This release includes several new features to help you optimize your app, improve project organization, and ensure compliance.

    Test app backup and restore

    With new Android hardware devices coming out, ensuring a smooth app transfer experience for your users switching to a new device is critical. Android Studio now provides tools to generate a backup of your app’s data and restore it to another device. This makes it much easier to test your app’s backup and restore functionality and protect users from data loss. Additionally, you can create and attach backups to your run configurations, making it easy to utilize Backup and Restore for your day-to-day development.

    screenshot of backup and restore dialog in Android Studio

    Backup and restore dialog

    Play policy insights

    Get early warnings about potential Play policy violations to help you build more compliant apps with Play Policy Insights, now in Android Studio. The IDE now shows lint warnings directly in your code when it relates to a Google Play policy requirement. You can also integrate these lint checks into your CI/CD pipelines. These insights provide an overview of the policy, dos and don’ts, and links more resources, helping you address potential issues early in your development cycle.

    moving image of Play policy insights in Android Studio

    Play policy insights example

    Proguard inspections for overly broad keep rules

    Android Studio’s Proguard file editor now warns you about keep rules that are overly broad. These rules can limit R8’s ability to optimize your code, potentially impacting app size and performance. This inspection helps you write more precise rules for a more optimized app.

    screenshot of proguard inspections example in Android Studio

    Proguard inspections example

    Improved Android view for multi-module projects

    For those working on large projects, the Android view has a new setting to display build files directly under their corresponding modules. This change makes it easier to navigate and manage build scripts in projects with many modules.

    screenshot of option to display build files in module in Android Studio

    Option to display build files in module

    More control over automatic project sync

    For developers working on large projects, automatic Gradle syncs can sometimes interrupt your workflow. To give you more control, we’re introducing an option to switch to manual project sync with reminders. When enabled, Android Studio will inform you when a sync is needed, but lets you decide when to run it, so there aren’t unexpected interruptions. You can try this feature by navigating to Settings > Build, Execution, Deployment > Build Tools.

    screenshot of project sync mode in Android Studio

    screenshot of enable / disable auto project sync in Android Studio

    Enable / Disable auto project sync

    Faster UI iteration 🎨

    Resizable compose preview

    Building responsive UIs just got easier: Compose Preview now supports dynamic resizing, giving you instant visual feedback on how your UI adapts to different screen sizes. Simply enter Focus mode in the Compose Preview and drag the edges to see your layout change in real-time. You can even save a specific size as a new @Preview annotation with a single click, streamlining your multi-device development process.

    screenshot of enable / disable auto project sync in Android Studio

    Resizable compose preview

    Summary

    To recap, Android Studio Narwhal Feature Drop 3 includes the following enhancements and features:

    Develop with AI

      • AGENTS.md support: Provide project-specific context to Gemini for more tailored responses.
      • Image attachment (Stable): Easily attach image files for Gemini in Android Studio.
      • @File attachment (Stable): Easily attach project files as context for Gemini in Android Studio.

    Optimize and refine

      • Backup and restore support: Easily test your app’s data backup and restoration flow.
      • Play policy insights: Get early warnings about potential Play Policy violations.
      • Proguard inspections: Identify and fix overly broad keep rules for better optimization.
      • Display build files under module: Improve project navigation in the Android view.
      • Manual project sync: Gain more control over when Gradle syncs occur in large projects.

    Faster UI iteration

      • Resizable compose preview: Dynamically resize your previews to test responsive UIs instantly.

    Get started

    Ready to accelerate your development? Download Android Studio Narwhal 3 Feature Drop from the stable channel today!

    Your feedback is essential. Please continue to share your thoughts by reporting bugs or suggesting features. For early access to the latest features, download Android Studio from the Canary channel.

    Join our vibrant Android developer community on LinkedIn, Medium, YouTube, or X. We can’t wait to see what you build!

    [ad_2]

    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    David I. Meeks
    • Website

    Related Posts

    4 Great Apps and Games for the NBA Season

    October 20, 2025

    Elevating your Android deep linking

    October 20, 2025

    Amazon’s AWS Disruption Creates Outages for Hundreds of Websites for Hours

    October 20, 2025

    Online Betting Booms Under Trump

    October 20, 2025

    What Is OpenAI’s Sora Slop App For, Exactly?

    October 19, 2025

    OpenAI Blocks Videos of Martin Luther King Jr. After Racist Depictions

    October 17, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Latest Posts

    4 Great Apps and Games for the NBA Season

    October 20, 2025

    Elevating your Android deep linking

    October 20, 2025

    Amazon’s AWS Disruption Creates Outages for Hundreds of Websites for Hours

    October 20, 2025

    Online Betting Booms Under Trump

    October 20, 2025
    © 2025 NekoPoiAPK.online – All Rights Reserved
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms and Conditions
    • Disclaimer
    • DMCA

    Type above and press Enter to search. Press Esc to cancel.