-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (31 loc) · 978 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
29
30
31
32
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.8.21'
coreVersion = '2.2.0'
iconsVersion = '1.2.0'
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.0'
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.14.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
//[enabled by builder] classpath 'com.google.gms:google-services:4.3.13'
//[enabled by builder] classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url("$rootDir/maven") }
}
}