status-keycard-java/demo-android/build.gradle

41 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2018-10-23 11:34:17 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "im.status.keycard.demo"
2018-10-23 11:34:17 +00:00
minSdkVersion 19
targetSdkVersion 28
2019-10-16 10:30:21 +00:00
versionCode 300
versionName "3.0.0"
2018-10-23 11:34:17 +00:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2019-03-27 10:08:02 +00:00
lintOptions {
lintConfig file("lint-config.xml")
2019-03-27 10:08:02 +00:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-10-23 11:34:17 +00:00
}
dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2020-11-09 13:03:25 +00:00
implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
implementation project(':android')
2018-10-23 11:34:17 +00:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}