72 lines
2.1 KiB
Groovy
72 lines
2.1 KiB
Groovy
/*
|
|
* LEDD Project
|
|
* Copyright (C) 2015 LEDD Team
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
repositories {
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.idlegandalf.ledd"
|
|
minSdkVersion 24
|
|
targetSdkVersion 28
|
|
versionCode System.getenv("BUILD_NUMBER") as Integer ?: 100
|
|
versionName "2.0.0-SNAPSHOT"
|
|
archivesBaseName = "LedD-" + versionName + "-" + versionCode
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility 1.8
|
|
sourceCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.koushikdutta.async:androidasync:2.2.1'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.0'
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
implementation 'com.github.madrapps:pikolo:1.1.6'
|
|
implementation 'com.google.guava:guava:27.0-android'
|
|
implementation('com.mikepenz:materialdrawer:6.1.1@aar') {
|
|
transitive = true
|
|
}
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.4'
|
|
compileOnly 'org.projectlombok:lombok:1.18.4'
|
|
}
|