Pilldroid/app/build.gradle

56 lines
1.5 KiB
Groovy
Raw Normal View History

2018-09-27 19:16:52 +02:00
//noinspection GradleCompatible
apply plugin: 'com.android.application'
android {
2020-05-11 20:49:29 +02:00
compileSdkVersion 27
defaultConfig {
applicationId "net.foucry.pilldroid"
2020-05-11 20:49:29 +02:00
minSdkVersion defaultMinSdkVersion
targetSdkVersion defaultTargetSdkVersion
versionCode defaultVersionCode1
versionName "1.0"
2020-05-11 20:49:29 +02:00
applicationIdSuffix = 'alpha'
}
buildTypes {
release {
minifyEnabled false
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2016-11-01 23:17:06 +01:00
productFlavors {
}
2018-09-27 19:16:52 +02:00
compileOptions {
2020-04-12 19:57:10 +02:00
sourceCompatibility JavaVersion.VERSION_1_8
2018-09-27 19:16:52 +02:00
targetCompatibility JavaVersion.VERSION_1_8
}
2019-09-18 23:01:42 +02:00
/*dexOptions {
2019-09-12 18:39:03 +02:00
incremental false
2019-09-18 23:01:42 +02:00
}*/
2020-04-12 19:57:10 +02:00
buildToolsVersion = buildToolsVersion1
allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
2020-05-11 20:49:29 +02:00
/*repositories {
2016-05-27 18:07:37 +02:00
mavenCentral()
maven {
url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"
}
2020-05-11 20:49:29 +02:00
}*/
2016-05-27 18:07:37 +02:00
dependencies {
2019-09-18 23:01:42 +02:00
implementation fileTree(include: ['*.jar'], dir: 'libs')
2020-04-12 19:57:10 +02:00
testImplementation 'junit:junit:4.13'
2020-05-11 20:49:29 +02:00
2019-09-18 23:01:42 +02:00
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
2020-05-11 20:49:29 +02:00
implementation 'com.google.zxing:core:3.4.0'
}