Share via

Issue with Jetpack Compose, and Kotlin 2.2

Peter Liang 3,286 Reputation points
2026-03-23T03:16:28.56+00:00

Hi,

To the fact like

//

Developers should migrate to alternatives like GitHub Actions, Sentry, or CircleCI. This is not a retirement of Android development itself, which in 2026 is stable, focused on Jetpack Compose, and Kotlin 2.2

\\

Can we use VS 2026 using Jetpack Compose, and Kotlin 2.2, to have the strong/good Android app?

Since VS2026 is not the good way/option for developing Android app, is it still considered to be good way to link to IIS server for retrieving the data/files, using whatever Android developer apps?

Developer technologies | Visual Studio | Other
Developer technologies | Visual Studio | Other

A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.


1 answer

Sort by: Most helpful
  1. Q&A Assist
    2026-03-23T03:16:39.4466667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Yes. Visual Studio 2026 (like Visual Studio 2022) supports modern Android development and can be part of a strong Android app toolchain, including when the app itself is built with Jetpack Compose and a recent Kotlin version.

    From the context:

    • Visual Studio provides tools for Android development using .NET, C#, C++, Unity, and Unreal, and integrates with the Android SDK and NDK for mobile workloads.
    • Visual Studio setup can install the Android SDK and API levels needed for mobile development, and additional API levels can be added via the Android SDK Manager.

    For Jetpack Compose + Kotlin 2.2 specifically:

    • Jetpack Compose apps use the Android toolchain (Gradle, Android Studio or compatible build system) plus libraries like the Microsoft Clarity Android SDK.
    • For Compose-based apps, the Clarity SDK provides a dedicated artifact com.microsoft.clarity:clarity-compose and Compose modifiers such as clarityMask() and clarityUnmask() to integrate analytics and masking into composables.

    A strong Android app in this stack typically looks like:

    1. Android app codebase: Kotlin (including Kotlin 2.2) + Jetpack Compose UI.
    2. Analytics/telemetry: Optional integration with Clarity using clarity-compose:
         repositories {
             mavenCentral()
         }
         
         dependencies {
             implementation 'com.microsoft.clarity:clarity-compose:3.+'
         }
      
      And initialization in the startup activity using Clarity.initialize(...) as shown in the Android SDK docs.
    3. Development environment:
      • Visual Studio 2026 for .NET backends, APIs, and related tooling.
      • Android SDK/NDK and Compose/Kotlin toolchain for the Android client.

    So Visual Studio 2026 can absolutely be used in a modern 2026 Android development workflow, while Jetpack Compose and Kotlin 2.2 remain the primary stack on the Android side, with optional integration of Microsoft Clarity for analytics.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.