Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Update buildfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Nov 3, 2014
1 parent 647668d commit de8d906
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ buildscript {
artifactUrls "file:~/.m2/"
}
}
classpath 'com.android.tools.build:gradle:0.12.2'
classpath 'com.android.tools.build:gradle:0.14.0'
// classpath 'com.jakewharton.hugo:hugo-plugin:1.0.+'
classpath 'org.robolectric:robolectric-gradle-plugin:0.11.+'
classpath 'org.robolectric:robolectric-gradle-plugin:0.13.+'
}
}
dependencies {
Expand Down Expand Up @@ -53,7 +53,7 @@ subprojects {
}

gradle.projectsEvaluated {
def projects=["custom_views","date-time-picker","widget","settings"]
def projects=["custom_views","date-time-picker","widget","settings","colorpickerpreference","donationslib","new_ui","main"]
for(String proj:projects){
def res_dir=rootDir.toString()+"/"+proj+"/res"
def res_v14_dir=rootDir.toString()+"/"+proj+"/res-v14"
Expand All @@ -75,25 +75,26 @@ gradle.projectsEvaluated {
}
}
ext {
compileSdkVersion = 19
buildToolsVersion = "20.0.0"
compileSdkVersion = 21
buildToolsVersion = "21.1.0"
minSDKVersion = 8
}

configure(allprojects) {
ext.androidSDKVersion = "19"
ext.androidBuildToolsVersion = "19.0"
ext.androidSupportVersion = "20.0.0"
ext.androidPluginVersion ="0.12.1"
ext.androidMinSDKVersion ="8"
ext.androidSDKVersion = "21"
ext.androidBuildToolsVersion = "21.1.0"
ext.androidSupportVersion = "21.0.+"
ext.androidPluginVersion ="0.14.0"
ext.androidMinSDKVersion ="14"
ext.jodaLibraryVersion = "2.2"
ext.nineoldandroisVersion="2.4.0"
ext.robotiumVersion = "5.1"
ext.robotiumVersion = "5.2.1"
ext.gsonVersion = "2.2.+"
ext.junitVersion = "4.11"
ext.guavaVersion = "17.0"
ext.butterknifeVersion = "5.1.1"
ext.dashclockVersion = "2.0.0"
ext.robolectricVersion= "2.3"
}

allprojects {
Expand All @@ -106,4 +107,6 @@ allprojects {
}
}

}
}


0 comments on commit de8d906

Please sign in to comment.