apply plugin: 'android-sdk-manager' apply plugin: 'com.android.application' apply from: '../gradle/plugins/checkstyle-android.gradle' apply from: '../gradle/plugins/findbugs-android.gradle' apply plugin: 'jacoco' repositories { jcenter() } ext { supportLibraryVersion = '23.1.1' } //noinspection GroovyAssignabilityCheck configurations.all { resolutionStrategy { force "com.android.support:support-annotations:${project.supportLibraryVersion}" } } dependencies { compile project(':k9mail-library') compile project(':plugins:Android-PullToRefresh:library') compile project(':plugins:HoloColorPicker') compile 'commons-io:commons-io:2.4' compile "com.android.support:support-v4:${project.supportLibraryVersion}" compile 'net.sourceforge.htmlcleaner:htmlcleaner:2.16' compile 'de.cketti.library.changelog:ckchangelog:1.2.1' compile 'com.github.bumptech.glide:glide:3.6.1' compile 'org.sufficientlysecure:openpgp-api:8.0' compile 'com.splitwise:tokenautocomplete:2.0.2' androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1' testCompile 'org.robolectric:robolectric:3.0' testCompile 'junit:junit:4.12' testCompile 'org.mockito:mockito-all:1.10.19' } android { compileSdkVersion rootProject.compileSdkVersion buildToolsVersion rootProject.buildToolsVersion defaultConfig { minSdkVersion 15 targetSdkVersion 22 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } signingConfigs { release } buildTypes { release { if (project.hasProperty('storeFile')) { signingConfig signingConfigs.release } buildConfigField "boolean", "DEVELOPER_MODE", "false" } debug { applicationIdSuffix ".debug" testCoverageEnabled rootProject.testCoverage buildConfigField "boolean", "DEVELOPER_MODE", "true" } } // Do not abort build if lint finds errors lintOptions { abortOnError false lintConfig file("$rootProject.projectDir/config/lint/lint.xml") } packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE' exclude 'META-INF/NOTICE.txt' exclude 'LICENSE.txt' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } } if (project.hasProperty('keyAlias')) { android.signingConfigs.release.keyAlias = keyAlias } if (project.hasProperty('keyPassword')) { android.signingConfigs.release.keyPassword = keyPassword } if (project.hasProperty('storeFile')) { android.signingConfigs.release.storeFile = file(storeFile) } if (project.hasProperty('storePassword')) { android.signingConfigs.release.storePassword = storePassword }