|
|
|
@ -69,6 +69,8 @@ android.applicationVariants.all { variant ->
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
// all dependencies are APLv2 unless otherwise noted
|
|
|
|
|
|
|
|
|
|
provided group: 'com.squareup.dagger', name: 'dagger-compiler', version: '1.2.1'
|
|
|
|
|
|
|
|
|
|
compile group: 'com.android.support', name: 'appcompat-v7', version: '19.1.+'
|
|
|
|
@ -77,7 +79,15 @@ dependencies {
|
|
|
|
|
|
|
|
|
|
compile project(":api")
|
|
|
|
|
|
|
|
|
|
compile fileTree(dir: "libs", includes: ["*.jar"])
|
|
|
|
|
compile fileTree(dir: "libs", includes: [
|
|
|
|
|
"CWAC-SackOfViewsAdapter.jar",
|
|
|
|
|
"framework.jar",
|
|
|
|
|
"google-api-services-tasks-v1-1.3.0-beta.jar",
|
|
|
|
|
"googleloginclient-helper.jar",
|
|
|
|
|
"jchronic-0.2.3.jar", // MIT
|
|
|
|
|
"jsr305.jar", // BSD-new
|
|
|
|
|
"rfc2445-4Mar2011.jar"
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
compile group: 'com.google.guava', name: 'guava', version: '11.0.1', transitive: false
|
|
|
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '1.7.1', transitive: false
|
|
|
|
@ -91,7 +101,7 @@ dependencies {
|
|
|
|
|
compile group: 'com.google.oauth-client', name: 'google-oauth-client', version: '1.6.0-beta', transitive: false
|
|
|
|
|
compile group: 'com.google.oauth-client', name: 'google-oauth-client-extensions', version: '1.6.0-beta', transitive: false
|
|
|
|
|
|
|
|
|
|
androidTestCompile group: 'org.mockito', name: 'mockito-core', version: '1.9.5', transitive: false
|
|
|
|
|
androidTestCompile group: 'org.mockito', name: 'mockito-core', version: '1.9.5', transitive: false // MIT
|
|
|
|
|
androidTestCompile group: 'com.google.dexmaker', name: 'dexmaker', version: '1.1'
|
|
|
|
|
androidTestCompile group: 'com.google.dexmaker', name: 'dexmaker-mockito', version: '1.1'
|
|
|
|
|
}
|
|
|
|
|