All MicroEvals
(root) build.gradle.kts plugins { id("com.android.appli...
Create MicroEval
Header image for (root)  build.gradle.kts
plugins {
    id("com.android.appli...

(root) build.gradle.kts plugins { id("com.android.appli...

Prompt

(root) build.gradle.kts plugins { id("com.android.application") version "8.2.2" apply false id("org.jetbrains.kotlin.android") version "1.9.22" apply false } app/build.gradle.kts plugins { id("com.android.application") id("org.jetbrains.kotlin.android") } android { namespace = "com.novatest.myapp" //the max api version for android 36 = android 16, 28 = android compileSdk = 34 defaultConfig { applicationId = "com.novatest.myapp" //the min api version for android 36 = android 16, 28 = android minSdk = 28 //the target version for targetSdk = 34 //the version of the app versionCode = 1 versionName = "0.1.0-alpha" } //the version of java that compatible compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } //set the java version kotlinOptions { jvmTarget = "17" } } //files from repo that are needed dependencies { implementation("androidx.core:core-ktx:1.12.0") implementation("androidx.appcompat:appcompat:1.6.1") implementation("androidx.activity:activity-compose:1.9.3") implementation(platform("androidx.compose:compose-bom:2024.10.01")) implementation("androidx.compose.material3:material3") implementation("androidx.compose.ui:ui") }

Drag to resize
Drag to resize
Drag to resize