build.gradle (1036B)
1 buildscript { 2 ext { 3 kotlin_version = '2.2.20' // observe compatibility with compose compiler 4 ktor_version = '3.4.0' 5 nav_version = '2.9.7' 6 material_version = '1.13.0' 7 lifecycle_version = '2.10.0' 8 constraintlayout_version = '2.2.1' 9 junit_version = "4.13.2" 10 datastore_version = "1.1.1" 11 protobuf_version = "0.9.6" 12 // should debug build types be minified with D8 as well? good for catching issues early 13 minify_debug = false 14 } 15 repositories { 16 google() 17 mavenCentral() 18 } 19 dependencies { 20 classpath 'com.android.tools.build:gradle:8.13.2' 21 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 22 classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" 23 classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version" 24 } 25 } 26 27 allprojects { 28 repositories { 29 google() 30 mavenCentral() 31 maven { url 'https://jitpack.io' } 32 } 33 }