Android Studio Arctic Fox Fixed -
Arctic Fox was the first stable Compose release. Enable Compose buildFeatures compose true
| Version | Key Changes | |---------|--------------| | (2021.1.1) | AGP 7.1, App Inspector unified | | Chipmunk (2021.2.1) | AGP 7.2, Kotlin 1.6 | | Electric Eel (2022.1.1) | AGP 7.3, Compose 1.2 | | Flamingo (2022.2.1) | AGP 8.0, Kotlin 1.8, new UI |
compileOptions sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 android studio arctic fox
dependencies implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.4.0'
android compileSdk 31 buildToolsVersion "31.0.0" defaultConfig minSdk 21 targetSdk 31 Arctic Fox was the first stable Compose release
buildscript ext.kotlin_version = '1.5.31' // Kotlin 1.5.31 recommended repositories google() mavenCentral() dependencies classpath 'com.android.tools.build:gradle:7.0.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@Composable fun Greeting(name: String) Text(text = "Hello $name!") android studio arctic fox
@Preview @Composable fun PreviewGreeting() Greeting("Android")







































