Add comments to gradle build files.

This commit is contained in:
Danny Weinberg 2015-08-05 03:13:11 -07:00
parent c30b4e38e1
commit 6c82e98252
4 changed files with 23 additions and 13 deletions

View File

@ -5,6 +5,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.3.0' classpath 'com.android.tools.build:gradle:1.3.0'
// Used for annotation processing needed by the AndroidAnnotations library
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6'
} }
} }

View File

@ -1,5 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
// This file is here (rather than in the drag-sort-listview project)
// so we can control how it builds without having to submit pull requests.
dependencies { dependencies {
compile 'com.android.support:support-v4:19.1.0' compile 'com.android.support:support-v4:19.1.0'
} }

View File

@ -1,5 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
// This file is here (rather than in the holoeverywhere project)
// so we can control how it builds without having to submit pull requests.
dependencies { dependencies {
compile 'com.android.support:support-v4:13.0.0' compile 'com.android.support:support-v4:13.0.0'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'

View File

@ -1,5 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
// This file is here (rather than in the holoeverywhere project)
// so we can control how it builds without having to submit pull requests.
dependencies { dependencies {
compile project(':holoeverywhere-gradle') compile project(':holoeverywhere-gradle')
} }