forked from quran/quran_android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (65 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
ext {
kotlinVersion = '1.8.22'
coroutinesVersion = '1.7.2'
daggerVersion = '2.46.1'
androidxMediaVersion = '1.6.0'
androidxAnnotationVersion = '1.6.0'
androidxFragmentVersion = '1.6.0'
androidxPreferencesVersion = '1.2.0'
androidxAppcompatVersion = '1.6.1'
androidxLocalBroadcastVersion = '1.1.0'
androidxSwipeRefreshVersion = '1.1.0'
androidxRecyclerViewVersion = '1.3.0'
supportSqliteVersion = '2.1.0'
workManagerVersion = '2.8.1'
materialComponentsVersion = '1.9.0'
coreKtxVersion = '1.9.0'
anvilVersion = '2.4.6'
moshiVersion = '1.15.0'
okioVersion = '3.3.0'
retrofitVersion = '2.9.0'
sqldelightVersion = '2.0.0-rc02'
// testing
junitVersion = '4.13.2'
mockitoVersion = '5.4.0'
truthVersion = '1.1.5'
espressoVersion = '3.5.1'
robolectricVersion = '4.10.3'
androidxJunitExtVersion = '1.1.5'
deps = [
android: [
build: [
minSdkVersion : 21,
targetSdkVersion : 32,
compileSdkVersion: 33
]
],
dagger: [
apt: "com.google.dagger:dagger-compiler:${daggerVersion}",
runtime: "com.google.dagger:dagger:${daggerVersion}"
]
]
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "com.google.firebase:firebase-crashlytics-gradle:2.9.6"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "net.ltgt.gradle:gradle-errorprone-plugin:3.1.0"
classpath "com.google.gms:google-services:4.3.15"
classpath "app.cash.sqldelight:gradle-plugin:$sqldelightVersion"
classpath "com.squareup.anvil:gradle-plugin:$anvilVersion"
}
}
allprojects {
repositories {
mavenCentral()
google()
maven { url "https://androidx.dev/storage/compose-compiler/repository/" }
}
}