46 lines
1.2 KiB
Groovy
46 lines
1.2 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
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 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.idlegandalf.ledd"
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
compile 'com.android.support:support-v4:22.2.1'
|
|
compile 'com.squareup.okhttp:okhttp:2.4.0'
|
|
compile 'com.jakewharton:butterknife:7.0.1'
|
|
compile 'com.koushikdutta.async:androidasync:2.1.6'
|
|
compile 'com.android.support:design:22.2.1'
|
|
provided "org.projectlombok:lombok:1.16.4"
|
|
}
|