|
|
|
@ -1,16 +1,24 @@
|
|
|
|
buildscript {
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
maven {
|
|
|
|
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:0.6.+'
|
|
|
|
classpath 'com.android.tools.build:gradle:0.6.+'
|
|
|
|
|
|
|
|
classpath 'com.squareup.gradle:gradle-android-test-plugin:0.9.1-SNAPSHOT'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
apply plugin: 'android'
|
|
|
|
apply plugin: 'android'
|
|
|
|
|
|
|
|
apply plugin: 'android-test'
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
maven {
|
|
|
|
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
android {
|
|
|
|
@ -80,4 +88,10 @@ dependencies {
|
|
|
|
compile group: 'com.google.http-client', name: 'google-http-client-extensions-android3', version: '1.6.0-beta', transitive: false
|
|
|
|
compile group: 'com.google.http-client', name: 'google-http-client-extensions-android3', version: '1.6.0-beta', transitive: false
|
|
|
|
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', 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
|
|
|
|
compile group: 'com.google.oauth-client', name: 'google-oauth-client-extensions', version: '1.6.0-beta', transitive: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testCompile 'junit:junit:4.10'
|
|
|
|
|
|
|
|
testCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
|
|
|
|
|
|
|
|
// hack to get android studio to import libraries
|
|
|
|
|
|
|
|
instrumentTestCompile 'junit:junit:4.10'
|
|
|
|
|
|
|
|
instrumentTestCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|