-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdependencies.gradle
More file actions
72 lines (70 loc) · 2.99 KB
/
Copy pathdependencies.gradle
File metadata and controls
72 lines (70 loc) · 2.99 KB
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
ext {
kotlin_version = '2.1.20'
gradle_version = '8.13.2'
gradle_bintray_plugin_version = '1.7.3'
android_maven_gradle_plugin_version = '2.1'
rxkotlin_version = '2.4.0'
androidMinSdkVersion = 21
androidCompileSdkVersion = 36
androidBuildToolsVersion = "36.0.0"
androidTargetSdkVersion = 36
javaVersion = JavaVersion.VERSION_11
appApplicationId = "com.blockchain"
appVersion = 1
appVersionName = "1.0"
appcompat_version = '1.3.1'
corektx_version = '1.8.1'
androidx_activity_version = '1.9.2'
preference_version = '1.2.0'
constraintlayout_version = '2.0.1'
junit = 'junit:4.12'
testrunner = '1.1.0-alpha4'
espresso = '3.3.0-alpha02'
mockito_kotlin_version = '5.4.0'
retrofit_version = '2.9.0'
okhttplogging_version = '3.11.0'
dagger_version = '2.59.2'
room_version = '1.1.0'
room_rx_version = '2.1.0'
gson_version = '2.8.9'
graphview_version = '4.2.2'
mpandroidchart_version = 'v3.1.0-alpha'
rxandroid = '2.1.1'
mockito_inline_version = '5.2.0'
test_runner_version = '1.0.2'
leakcanary_version = '2.9.1'
chrome_custom_tab_version = '1.3.0'
kotlin = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// android
appcompat = "androidx.appcompat:appcompat:$appcompat_version"
corektx = "androidx.core:core-ktx:$appcompat_version"
constraintlayout = "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
preferenceLibrary = "androidx.preference:preference-ktx:$preference_version"
androidXActivity="androidx.activity:activity-ktx:$androidx_activity_version"
// unit test
junit = "junit:$junit"
testrunner = "com.android.support.test:runner:$test_runner_version"
mockitokotlin = "org.mockito.kotlin:mockito-kotlin:$mockito_kotlin_version"
mockitoinline = "org.mockito:mockito-inline:$mockito_inline_version"
// retrofit
retrofit = "com.squareup.retrofit2:retrofit:$retrofit_version"
retrofitrx = "com.squareup.retrofit2:adapter-rxjava2:$retrofit_version"
convertergson = "com.squareup.retrofit2:converter-gson:$retrofit_version"
okhttplogging = "com.squareup.okhttp3:logging-interceptor:$okhttplogging_version"
// rxkotlin
rxkotlin = "io.reactivex.rxjava2:rxkotlin:$rxkotlin_version"
// rxandroid
rxandroid = "io.reactivex.rxjava2:rxandroid:$rxandroid"
// Chrome custom tab
chromecustomtab = "androidx.browser:browser:$chrome_custom_tab_version"
// Dagger 2
dagger = "com.google.dagger:dagger:$dagger_version"
daggerandroid = "com.google.dagger:dagger-android:$dagger_version"
daggerandroidsupport = "com.google.dagger:dagger-android-support:$dagger_version"
daggercompiler = "com.google.dagger:dagger-compiler:$dagger_version"
daggerandroidprocessor = "com.google.dagger:dagger-android-processor:$dagger_version"
// GSON
gson = "com.google.code.gson:gson:$gson_version"
// leakcanary
leakcanary = "com.squareup.leakcanary:leakcanary-android:$leakcanary_version"
}