apply plugin: 'com.android.application' apply plugin: 'com.neenbedankt.android-apt' android { compileSdkVersion 17 buildToolsVersion "22.0.1" compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } sourceSets { main.java.srcDirs += ["../nineoldandroids/library/src"] } buildTypes { release { minifyEnabled false } } 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 } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) 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" }