Files
RFIDtools/terminal-view/build.gradle
T

33 lines
738 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 28
dependencies {
implementation "androidx.annotation:annotation:1.1.0"
api project(":terminal-emulator")
}
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
testImplementation 'junit:junit:4.13'
}