-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (20 loc) · 644 Bytes
/
build.gradle
File metadata and controls
22 lines (20 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
ext {
compose_compiler_version = '1.5.15'
compose_version = '1.10.6'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.google.android.gms:oss-licenses-plugin:0.11.0")
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '9.1.0' apply false
id 'com.android.library' version '9.1.0' apply false
id 'org.jetbrains.kotlin.android' version '2.3.20' apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.20' apply false
}