-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
42 lines (36 loc) · 1.5 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_ui_version = '1.5.3'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.1' // Koala
// classpath 'com.android.tools.build:gradle:8.4.2' // JellyFish (8.4.0 - 8.4.2)
// classpath 'com.android.tools.build:gradle:8.3.2' // Iguana (8.3.0 - 8.3.2)
// classpath 'com.android.tools.build:gradle:8.2.2' // Hedgehog (8.2.0 - 8.2.2)
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
classpath 'com.google.gms:google-services:4.4.2' // Firebase
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
}
task clean(type: Delete) {
delete rootProject.layout.buildDirectory
}
task Test{
}
// TODO (In Windows) Run `gradlew task` comment in Terminal to get all available gradlew methods
// TODO (In Mac) Press [⌘ + ↩] to Run `gradlew task` comment in Terminal to get all available gradlew methods
task ktlintCheck{
}
// TODO to run ktlintCheck from terminal execute "./gradlew ktlintCheck"