-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependencies.gradle
46 lines (42 loc) · 2.01 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
37
38
39
40
41
42
43
44
45
46
ext {
compileSdk = 31
minSdk = 21
targetSdk = 31
applicationId = "com.first.sampleproject"
coreKtxVersion = "1.7.0"
appcompatVersion = "1.4.0"
materialVersion = "1.4.0"
constraintVersion = "2.1.2"
liveDataVersion = "2.4.0"
viewmodelVersion = "2.4.0"
testJunitVersion = "4.+"
gsonVersion = "2.8.6"
androidTestJunitVersion = "1.1.3"
androidTestEspressoVersion = "3.4.0"
navigationVersion = "2.3.5"
gsonVersion = "2.8.6"
slf4jVersion = "1.7.28"
logbackVersion = "2.0.0"
securityVersion = "1.1.0-alpha01"
appDependencies = [
coreKtx :"androidx.core:core-ktx:${coreKtxVersion}",
appcompat :"androidx.appcompat:appcompat:${appcompatVersion}",
material :"com.google.android.material:material:${materialVersion}",
constraint :"androidx.constraintlayout:constraintlayout:${constraintVersion}",
liveData :"androidx.lifecycle:lifecycle-livedata-ktx:${liveDataVersion}",
viewmodel :"androidx.lifecycle:lifecycle-viewmodel-ktx:${viewmodelVersion}",
navigationFragment :"androidx.navigation:navigation-fragment-ktx:${navigationVersion}",
navigationKtx :"androidx.navigation:navigation-ui-ktx:${navigationVersion}",
slf4j : "org.slf4j:slf4j-api:$slf4jVersion",
logback : "com.github.tony19:logback-android:$logbackVersion",
gson : "com.google.code.gson:gson:${gsonVersion}",
securityCrypto : "androidx.security:security-crypto:$securityVersion",
]
testingDependencies = [
testJunit : "junit:junit:${testJunitVersion}",
]
androidTestingDependencies = [
androidTestJunit : "androidx.test.ext:junit:${androidTestJunitVersion}",
androidTestEspresso : "androidx.test.espresso:espresso-core:${androidTestEspressoVersion}",
]
}