47 lines
1.1 KiB
Groovy
47 lines
1.1 KiB
Groovy
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'com.github.kt3k.coveralls'
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.1'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||
|
//buildToolsVersion rootProject.ext.buildToolsVersion
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion rootProject.ext.minSdkVersion
|
||
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||
|
versionCode 1
|
||
|
versionName project.version
|
||
|
consumerProguardFiles 'release-proguard.pro'
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
debug {
|
||
|
testCoverageEnabled = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
//compile 'com.parse:parse-android:1.14.1'
|
||
|
compile "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
||
|
compile 'com.parse.bolts:bolts-tasks:1.4.0'
|
||
|
testCompile 'org.robolectric:robolectric:3.3.1'
|
||
|
testCompile 'org.skyscreamer:jsonassert:1.5.0'
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
||
|
implementation project(':Parse')
|
||
|
}
|