forked from theothernt/AerialViews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (31 loc) · 1.01 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
buildscript {
ext.kotlin_version = '2.0.20'
repositories {
mavenCentral()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.2.0"
classpath "com.osacky.doctor:doctor-plugin:0.9.1"
}
}
plugins {
id 'com.google.devtools.ksp' version '2.0.20-1.0.24'
id 'org.jetbrains.kotlin.jvm' version '2.0.20'
id "org.jetbrains.kotlin.kapt" version "2.0.20"
id "org.jmailen.kotlinter" version "4.3.0"
}
allprojects {
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
}
apply plugin: 'com.osacky.doctor'