-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (39 loc) · 1.56 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
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: rootProject.file('gradle/versions.gradle')
apply from: rootProject.file('gradle/plugin/detekt.gradle')
android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
multiDexEnabled = true
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
versionCode rootProject.authCode
versionName rootProject.authVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
api project(':tinkoff-id')
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
api "androidx.appcompat:appcompat:${appCompatVersion}"
api "androidx.constraintlayout:constraintlayout:${constraintLayoutVersion}"
api "com.google.android.material:material:${materialVersion}"
//rx
api "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
api "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
//tests
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
androidTestImplementation "androidx.test:rules:$testRuleVersion"
androidTestImplementation "androidx.test.uiautomator:uiautomator:$uiautomatorVersion"
}