You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/build.gradle

115 lines
3.1 KiB
Groovy

10 years ago
apply plugin: 'com.android.application'
task wrapper(type: Wrapper) {
gradleVersion = '2.9'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
10 years ago
}
}
repositories {
jcenter()
10 years ago
}
android {
lintOptions {
lintConfig file("lint.xml")
}
compileSdkVersion 23
buildToolsVersion "23.0.2"
10 years ago
defaultConfig {
versionCode 384
versionName "4.8.3"
minSdkVersion 14
targetSdkVersion 23
10 years ago
}
signingConfigs {
release
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
10 years ago
debug {
testCoverageEnabled true
}
10 years ago
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.pro'
signingConfig signingConfigs.release
10 years ago
}
// https://code.google.com/p/android/issues/detail?id=123771
debuggable.initWith(buildTypes.debug)
debuggable {
testCoverageEnabled false
}
}
10 years ago
if (project.hasProperty('keyAlias') &&
project.hasProperty('storeFile') &&
project.hasProperty('storePassword') &&
project.hasProperty('keyPassword')) {
android.signingConfigs.release.keyAlias = keyAlias
android.signingConfigs.release.storeFile = file(storeFile)
android.signingConfigs.release.storePassword = storePassword
android.signingConfigs.release.keyPassword = keyPassword
} else {
buildTypes.release.signingConfig = null
}
productFlavors {
generic
googleplay
}
10 years ago
}
dependencies {
provided 'com.squareup.dagger:dagger-compiler:1.2.2'
compile 'com.squareup.dagger:dagger:1.2.2'
compile 'com.android.support:design:23.1.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.jakewharton.timber:timber:4.1.0'
compile 'com.google.guava:guava-jdk5:17.0'
compile ('com.rubiconproject.oss:jchronic:0.2.6') {
transitive = false
}
compile ('org.scala-saddle:google-rfc-2445:20110304') {
transitive = false
}
compile ('com.wdullaer:materialdatetimepicker:2.1.1') {
exclude group: 'com.android.support', module: 'support-v4'
}
googleplayCompile 'com.google.android.gms:play-services-location:8.4.0'
googleplayCompile 'com.google.android.gms:play-services-analytics:8.4.0'
googleplayCompile('com.google.apis:google-api-services-tasks:v1-rev41-1.21.0') {
10 years ago
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
googleplayCompile('com.google.api-client:google-api-client-android:1.21.0') {
10 years ago
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
androidTestCompile ('org.mockito:mockito-core:1.9.5') {
transitive = false
}
androidTestCompile 'com.google.dexmaker:dexmaker:1.1'
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.1'
androidTestCompile ('com.natpryce:make-it-easy:3.1.0') {
transitive = false
}
}