summaryrefslogtreecommitdiff
path: root/android/build.gradle.kts
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-06-29 00:49:21 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-06-29 00:49:21 +0000
commit436ce4d83fc28b78c25713126824c551948e511f (patch)
treed7455b8880ef0bbf78e6ec1018ffd93dd7c20dae /android/build.gradle.kts
parent541941ceefd7ef267a7fb86bab4344f8561bb959 (diff)
feat: scaffold Android widget project (Kotlin + Glance)
Diffstat (limited to 'android/build.gradle.kts')
-rw-r--r--android/build.gradle.kts6
1 files changed, 6 insertions, 0 deletions
diff --git a/android/build.gradle.kts b/android/build.gradle.kts
new file mode 100644
index 0000000..e6a7dbf
--- /dev/null
+++ b/android/build.gradle.kts
@@ -0,0 +1,6 @@
+plugins {
+ id("com.android.application") version "8.2.0" apply false
+ id("org.jetbrains.kotlin.android") version "1.9.22" apply false
+ id("org.jetbrains.kotlin.plugin.serialization") version "1.9.22" apply false
+ id("org.jetbrains.kotlin.plugin.compose") version "1.9.22" apply false
+}