forked from olup/notable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
22 lines (22 loc) · 862 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
repositories {
// Make sure that you have the following two repositories
google() // Google's Maven repository
mavenCentral() // Maven Central repository
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
ext {
compose_version = '1.3.1'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.10'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10'
id 'com.google.devtools.ksp' version '1.7.10-1.0.6'
id("com.github.evestera.depsize") version "0.2.0"
}