2015-08-05 08:43:41 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2015-08-05 10:10:10 +00:00
|
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
2015-08-05 08:43:41 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 10
|
|
|
|
targetSdkVersion 22
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
2015-08-05 10:10:10 +00:00
|
|
|
main.java.srcDirs += ["../nineoldandroids/library/src"]
|
2015-08-05 08:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
2015-08-05 10:10:10 +00:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/license.txt'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
exclude 'META-INF/notice.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
apt {
|
|
|
|
arguments {
|
|
|
|
resourcePackageName "com.dougkeen.bart"
|
|
|
|
androidManifestFile variant.outputs[0].processResources.manifestFile
|
|
|
|
}
|
2015-08-05 08:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2015-08-05 10:10:10 +00:00
|
|
|
compile project(":holoeverywhere-gradle")
|
|
|
|
compile project(":holoeverywhere-preferences-gradle")
|
|
|
|
compile project(":drag-sort-listview-gradle")
|
|
|
|
|
|
|
|
apt 'com.googlecode.androidannotations:androidannotations:2.7'
|
|
|
|
compile "com.googlecode.androidannotations:androidannotations-api:2.7"
|
2015-08-05 08:43:41 +00:00
|
|
|
}
|