diff --git a/app/build.gradle b/app/build.gradle index fc3b6ce..5067daa 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,16 @@ apply plugin: 'com.android.application' apply plugin: 'com.neenbedankt.android-apt' +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" +} + android { compileSdkVersion 17 buildToolsVersion "22.0.1" @@ -35,13 +45,3 @@ apt { 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" -}