2018-10-23 11:34:17 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
2018-12-07 13:44:02 +00:00
|
|
|
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 {
|
2019-03-27 15:38:39 +00:00
|
|
|
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'
|
2018-10-27 05:29:41 +00:00
|
|
|
|
2018-12-11 08:50:53 +00:00
|
|
|
implementation project(':android')
|
2018-10-27 05:29:41 +00:00
|
|
|
|
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'
|
|
|
|
}
|