Android
Install prerequisites and add the platform:
dotnet workload install androidcarbon platform add androidConfigure SDK levels and identity under bundle.android:
{ "bundle": { "android": { "package": "dev.example.app", "minSdk": 24, "targetSdk": 34, "compileSdk": 34 } }}Device permissions in permissions are translated into AndroidManifest entries during platform sync.
Run on a connected device or emulator:
carbon dev androidCreate an installable APK or Play Store AAB:
carbon bundle androidcarbon bundle android --aabRelease signing uses the configured keystore and environment variables described in Signing & notarization.
