-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdependencies.gradle
36 lines (28 loc) · 1.43 KB
/
dependencies.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
ext {
compileSdkVersion = 31
buildToolsVersion = '30.0.3'
minSdkVersion = 21
targetSdkVersion = 30
kotlin_version = '1.6.10'
kotlinCoroutines_version = '1.6.0'
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8
dep = [
androidPlugin : "com.android.tools.build:gradle:7.1.2",
androidMavenPlugin : "com.github.dcendents:android-maven-gradle-plugin:2.1",
kotlinCompiler : "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version",
kotlinRuntime : "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",
kotlinCoroutines : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutines_version",
supportAnnotations : "androidx.annotation:annotation:1.1.0",
customTabs : "androidx.browser:browser:1.4.0",
localBroadcastManager: 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0',
okhttp3 : "com.squareup.okhttp3:okhttp:4.9.3",
gson : "com.google.code.gson:gson:2.8.6",
// Test dependencies
mockito : "org.mockito:mockito-core:2.28.2",
junit : "junit:junit:4.13.2",
hamcrestMatchers : "org.hamcrest:hamcrest-core:1.3",
testInstrumentationRunner : "androidx.test.runner.AndroidJUnitRunner"
]
isCi = "true" == System.getenv('CI')
}