-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
build.gradle
45 lines (41 loc) · 1.35 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
39
40
41
42
43
44
45
buildscript {
ext.kotlinVersion = '1.9.23'
ext.daggerVersion = '2.51'
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.1'
//classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
// Firebase stuff
// Check that you have the Google Services Gradle plugin v4.3.2 or later
// (if not, add it).
classpath 'com.google.gms:google-services:4.4.1'
// Add the Crashlytics Gradle plugin.
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
//
//classpath("com.github.triplet.gradle:play-publisher:3.4.0-agp7.0")
classpath 'com.github.bjoernq:unmockplugin:0.7.9'
// Hilt: https://developer.android.com/training/dependency-injection/hilt-android#groovy
classpath "com.google.dagger:hilt-android-gradle-plugin:$daggerVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven {
url 'https://jitpack.io'
}
}
}
ext {
minSdkVersion = 21
targetSdkVersion = 34
//buildToolsVersion = '33.0.0'
}