diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 00:49:21 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 00:49:21 +0000 |
| commit | 436ce4d83fc28b78c25713126824c551948e511f (patch) | |
| tree | d7455b8880ef0bbf78e6ec1018ffd93dd7c20dae /android/build.gradle.kts | |
| parent | 541941ceefd7ef267a7fb86bab4344f8561bb959 (diff) | |
feat: scaffold Android widget project (Kotlin + Glance)
Diffstat (limited to 'android/build.gradle.kts')
| -rw-r--r-- | android/build.gradle.kts | 6 |
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 +} |
