forked from theothernt/AerialViews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
28 lines (25 loc) · 829 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
23
24
25
26
27
28
buildscript {
ext.kotlin_version = '1.9.22'
repositories {
mavenCentral()
google()
maven {url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath "org.jmailen.gradle:kotlinter-gradle:3.12.0"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.2.0"
classpath "com.osacky.doctor:doctor-plugin:0.8.1"
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
apply plugin: 'com.osacky.doctor'