forked from alamkanak/Android-Week-View
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathbuild.gradle
37 lines (32 loc) · 982 Bytes
/
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
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
}
group = 'com.github.thellmund.Android-Week-View'
version = '5.3.0'
android {
compileSdkVersion buildConfig.compileSdk
defaultConfig {
minSdkVersion buildConfig.minSdk
targetSdkVersion buildConfig.targetSdk
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(':base')
implementation libraries.kotlin
implementation libraries.appCompat
implementation libraries.androidxCore
implementation libraries.androidxCustomView
testImplementation testing.androidxjUnit
testImplementation testing.androidxTestRunner
testImplementation testing.jUnit
testImplementation testing.mockitoCore
testImplementation testing.mockitoInline
testImplementation testing.mockitoKotlin
testImplementation testing.truth
}