-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (27 loc) · 936 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '2.0.0-Beta4'
ext.android_plugin_version = '2.2.0-alpha4'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.4.0'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.google.firebase:firebase-crashlytics-ktx:18.6.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'androidx.datastore:datastore-android:1.1.0-beta02'
classpath 'androidx.datastore:datastore-preferences:1.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:$android_plugin_version"
}
}
allprojects {
repositories {
jcenter()
google()
}
}