Files
supabase/examples/product-sample-supabase-kt/build.gradle
Hieu Vu c09caa317a Update Kotlin tutorials to be aligned with supabase-kt v2.0.0 (#19998)
* Update Kotlin tutorials with supabase 2.0.0

* Update build gradle

* Update with-kotlin.mdx

* Update with-kotlin.mdx

---------

Co-authored-by: Charis <26616127+charislam@users.noreply.github.com>
2024-01-03 18:27:57 +00:00

14 lines
556 B
Groovy

buildscript {
ext {
compose_version = '1.3.0'
hilt_version = '2.48'
ktor_version = '2.3.0'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id("com.google.dagger.hilt.android") version "2.44" apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.0'
}