57 lines
1.4 KiB
Groovy
57 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'android-apt'
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.3.0'
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
|
}
|
|
}
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "net.headlezz.udacityproject1"
|
|
minSdkVersion 21
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/services/javax.annotation.processing.Processor'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.1.0'
|
|
compile 'com.android.support:design:23.1.0'
|
|
compile 'com.android.support:recyclerview-v7:23.1.0'
|
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
|
|
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
|
|
|
|
compile 'com.jakewharton:butterknife:7.0.1'
|
|
|
|
apt 'net.simonvt.schematic:schematic-compiler:0.6.3'
|
|
compile 'net.simonvt.schematic:schematic:0.6.3'
|
|
}
|