-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
22 lines (20 loc) · 791 Bytes
/
build.gradle.kts
File metadata and controls
22 lines (20 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
val aboutLibrariesVersion by extra("10.10.0")
val composeVersion by extra("1.6.0")
repositories {
google()
mavenCentral()
//NEEDED FOR ABOUTLIBRARIES
maven { url = uri("https://plugins.gradle.org/m2/")}
}
dependencies {
//ABOUT LIBRARIES
classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$aboutLibrariesVersion")
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.2.2" apply false
id("com.android.library") version "8.2.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
id("com.google.devtools.ksp") version "1.9.10-1.0.13" apply false
}