From 5b708e433f8b232aa9a7fa92b9e7c36ee6241759 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Sun, 6 Sep 2026 16:36:13 -0300 Subject: [PATCH] android: configurar AGP y Kotlin --- android-app/build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 android-app/build.gradle.kts diff --git a/android-app/build.gradle.kts b/android-app/build.gradle.kts new file mode 100644 index 0000000..553a5c0 --- /dev/null +++ b/android-app/build.gradle.kts @@ -0,0 +1,5 @@ +plugins { + id("com.android.application") version "8.13.2" apply false + id("org.jetbrains.kotlin.android") version "2.2.20" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.2.20" apply false +}