/* * 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 . */ buildscript { repositories { mavenCentral() jcenter() flatDir { dirs 'libs' } } dependencies { classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1' classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3' } } apply plugin: 'com.android.application' apply plugin: 'com.jakewharton.hugo' apply plugin: 'com.github.ben-manes.versions' android { compileSdkVersion 23 buildToolsVersion '23.0.1' lintOptions { abortOnError false } defaultConfig { applicationId "com.idlegandalf.ledd" minSdkVersion 17 targetSdkVersion 23 versionCode 2 versionName "1.0.1" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.0.1' compile 'com.android.support:support-v4:23.0.1' compile 'com.squareup.okhttp:okhttp:2.5.0' compile 'com.google.code.gson:gson:2.4' compile 'com.jakewharton:butterknife:7.0.1' compile 'com.koushikdutta.async:androidasync:2.1.6' compile 'com.android.support:design:23.0.1' compile 'com.larswerkman:HoloColorPicker:1.5@aar' compile 'com.google.guava:guava:19.0-rc2' compile 'com.thetransactioncompany:jsonrpc2-base:1.38' provided 'org.projectlombok:lombok:1.16.6' }