Make order of gradle files consistent

This commit is contained in:
Danny Weinberg 2015-08-05 10:27:21 -07:00
parent 2e4cb679f7
commit 879da8419b
1 changed files with 10 additions and 10 deletions

View File

@ -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"
}