2018-09-27 19:16:52 +02:00
|
|
|
//noinspection GradleCompatible
|
2016-05-19 07:37:28 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-09-27 19:16:52 +02:00
|
|
|
compileSdkVersion 27
|
2019-09-12 18:39:03 +02:00
|
|
|
buildToolsVersion '28.0.0'
|
2016-05-19 07:37:28 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.foucry.pilldroid"
|
2018-09-27 19:16:52 +02:00
|
|
|
minSdkVersion 25
|
|
|
|
targetSdkVersion 27
|
2016-05-19 07:37:28 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
2017-08-27 18:31:30 +02:00
|
|
|
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-01 23:17:06 +01:00
|
|
|
productFlavors {
|
|
|
|
}
|
2018-09-27 19:16:52 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_6
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
dexOptions {
|
2019-09-12 18:39:03 +02:00
|
|
|
incremental false
|
2018-09-27 19:16:52 +02:00
|
|
|
}
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:07:37 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 07:37:28 +02:00
|
|
|
dependencies {
|
2016-05-29 19:27:27 +02:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2016-05-19 07:37:28 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
2018-09-27 19:16:52 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:27.1.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:27.1.1'
|
|
|
|
compile 'com.android.support:design:27.1.1'
|
|
|
|
compile 'com.android.support:support-v4:27.1.1'
|
2017-12-11 15:24:50 +01:00
|
|
|
}
|