2018-06-10 16:23:33 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2019-06-11 14:52:41 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-android'
|
2018-06-10 16:23:33 +02:00
|
|
|
|
|
|
|
android {
|
2019-05-27 16:06:07 +02:00
|
|
|
compileSdkVersion 28
|
2018-06-10 16:23:33 +02:00
|
|
|
defaultConfig {
|
2019-05-27 16:06:07 +02:00
|
|
|
applicationId "lu.circl.mispbump"
|
|
|
|
minSdkVersion 23
|
|
|
|
targetSdkVersion 28
|
2018-06-10 16:23:33 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2019-06-17 09:49:09 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-06-11 14:52:41 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-06-10 16:23:33 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
2019-05-27 16:06:07 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2018-06-10 16:23:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-17 09:49:09 +02:00
|
|
|
// android
|
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
2018-08-10 15:15:09 +02:00
|
|
|
|
2019-05-27 16:06:07 +02:00
|
|
|
// retrofit
|
2019-06-17 09:49:09 +02:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
|
2019-05-27 16:06:07 +02:00
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
|
2019-06-17 09:49:09 +02:00
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
|
2018-06-10 16:23:33 +02:00
|
|
|
|
2019-06-17 09:49:09 +02:00
|
|
|
// barcode reading
|
2019-05-27 16:06:07 +02:00
|
|
|
implementation 'com.google.android.gms:play-services-vision:17.0.2'
|
2018-07-19 10:12:04 +02:00
|
|
|
|
2019-05-27 16:06:07 +02:00
|
|
|
// barcode generation
|
|
|
|
implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
|
2019-06-17 09:49:09 +02:00
|
|
|
implementation 'com.google.zxing:core:3.4.0'
|
2019-05-27 16:06:07 +02:00
|
|
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-08-10 15:15:09 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-06-17 09:49:09 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2019-06-11 14:52:41 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-06-10 16:23:33 +02:00
|
|
|
}
|