misp-bump/app/build.gradle

59 lines
2.0 KiB
Groovy
Raw Normal View History

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"
testInstrumentationRunner "android.support.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 {
2018-08-10 15:15:09 +02:00
2019-05-27 16:06:07 +02:00
// retrofit
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
2018-08-10 15:15:09 +02:00
2019-05-27 16:06:07 +02:00
// android
2019-06-11 14:52:41 +02:00
implementation 'com.android.support:support-v4:28.0.0'
2019-05-27 16:06:07 +02:00
implementation 'com.android.support:design:28.0.0'
2019-06-11 14:52:41 +02:00
implementation 'com.android.support:appcompat-v7:28.0.0'
2019-05-27 16:06:07 +02:00
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
2018-06-10 16:23:33 +02:00
2019-05-27 16:06:07 +02:00
// barcode scanning
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'
implementation 'com.google.zxing:core:3.3.0'
// override due to play-services-vision version conflicts
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-08-10 15:15:09 +02: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'
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
}