-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
35 lines (28 loc) · 952 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
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion androidVersions.compileSdk
buildToolsVersion androidVersions.buildTools
defaultConfig {
minSdkVersion androidVersions.minSdk
targetSdkVersion androidVersions.targetSdk
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
api project(':swissknife-core')
implementation deps.androidX.annotations
implementation deps.kotlin.reflect
testImplementation deps.junit
androidTestImplementation deps.androidX.test.junit
androidTestImplementation deps.androidX.test.espresso
}