-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
38 lines (35 loc) · 1.2 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
buildscript {
ext.KOTLIN_VERSION = '1.6.0'
ext.GOOGLE_SERVICES_VERSION = '4.3.13'
ext.GRADLE_VERSION = '7.0.2'
ext.CRASLYTICS_GRADLE_VERSION = '2.2.0'
ext.ONE_SIGNAL_GRADLE_PLUGIN_VERSION = '[0.12.10, 0.99.99]'
repositories {
gradlePluginPortal()
google()
// mavenCentral()
// maven { url 'https://plugins.gradle.org/m2/' }
// maven { url 'https://maven.google.com' }
}
dependencies {
classpath "com.android.tools.build:gradle:$GRADLE_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$KOTLIN_VERSION"
classpath "com.google.gms:google-services:$GOOGLE_SERVICES_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath "gradle.plugin.com.onesignal:onesignal-gradle-plugin:$ONE_SIGNAL_GRADLE_PLUGIN_VERSION"
classpath "com.google.firebase:firebase-crashlytics-gradle:$CRASLYTICS_GRADLE_VERSION"
}
}
//allprojects {
// repositories {
// google()
// maven { url "https://www.jitpack.io" }
// maven { url "https://jitpack.io" }
// mavenCentral()
// jcenter()
// }
//}
task clean(type: Delete) {
delete rootProject.buildDir
}