218 lines
8.2 KiB
Groovy
218 lines
8.2 KiB
Groovy
/*
|
|
* Copyright 2014 serso aka se.solovyev
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
* Contact details
|
|
*
|
|
* Email: se.solovyev@gmail.com
|
|
* Site: http://se.solovyev.org
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'signing'
|
|
|
|
android {
|
|
compileSdkVersion versions.sdk.compile
|
|
buildToolsVersion versions.sdk.buildTools
|
|
defaultConfig {
|
|
applicationId "org.solovyev.android.calculator"
|
|
minSdkVersion versions.sdk.min
|
|
targetSdkVersion versions.sdk.target
|
|
versionCode 156
|
|
versionName '2.2.6'
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard.cfg'
|
|
zipAlignEnabled true
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-debug.cfg'
|
|
// multidex is enabled only in debug builds as in release builds proguard should
|
|
// strip all unused methods
|
|
multiDexEnabled true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
warning 'MissingTranslation'
|
|
disable 'ContentDescription'
|
|
// floating icon is semi-transparent
|
|
disable 'IconLauncherShape'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
defaultConfig {
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = ['library': 'true']
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.android.support:support-v4:${versions.supportLib}"
|
|
implementation "com.android.support:appcompat-v7:${versions.supportLib}"
|
|
implementation "com.android.support:design:${versions.supportLib}"
|
|
implementation('ch.acra:acra:4.7.0') {
|
|
exclude group: 'org.json'
|
|
}
|
|
implementation ':measure:'
|
|
implementation ':square-otto:1.3.9-SNAPSHOT'
|
|
annotationProcessor ':square-otto:1.3.9-SNAPSHOT'
|
|
annotationProcessor ':square-otto-compiler:1.3.9-SNAPSHOT'
|
|
annotationProcessor 'com.squareup:javapoet:1.5.1'
|
|
implementation project(':dragbutton')
|
|
implementation(project(':jscl')) {
|
|
exclude(module: 'xercesImpl')
|
|
}
|
|
implementation 'org.solovyev.android:checkout:1.0.1'
|
|
implementation 'org.solovyev.android:material:0.1.4@aar'
|
|
implementation "com.google.android.gms:play-services-ads:${versions.gpsLib}"
|
|
implementation "com.google.android.gms:play-services-base:${versions.gpsLib}"
|
|
implementation "com.google.android.gms:play-services-analytics:${versions.gpsLib}"
|
|
implementation(name: 'plotter', ext: 'aar')
|
|
implementation 'com.google.guava:guava:20.0'
|
|
implementation('org.simpleframework:simple-xml:2.6.1') {
|
|
exclude(module: 'stax')
|
|
exclude(module: 'stax-api')
|
|
exclude(module: 'xpp3')
|
|
}
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
|
|
|
implementation 'com.google.dagger:dagger:2.0.2'
|
|
annotationProcessor "com.google.dagger:dagger-compiler:2.0.2"
|
|
implementation 'javax.annotation:jsr250-api:1.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'net.sf.opencsv:opencsv:2.0'
|
|
testImplementation 'org.mockito:mockito-core:1.9.0'
|
|
testImplementation 'org.robolectric:robolectric:3.4.2'
|
|
testImplementation 'org.mockito:mockito-all:1.9.5'
|
|
testImplementation 'org.skyscreamer:jsonassert:1.2.3'
|
|
testImplementation(name: 'org.apache.http.legacy', ext: 'jar')
|
|
|
|
androidTestImplementation "com.android.support:support-annotations:${versions.supportLib}"
|
|
androidTestImplementation'com.android.support.test:runner:0.5'
|
|
androidTestImplementation'com.android.support.test:rules:0.5'
|
|
androidTestImplementation'org.hamcrest:hamcrest-library:1.3'
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
// use version of jsr305 provided by Checkout
|
|
exclude group: 'com.google.code.findbugs', module: 'jsr305'
|
|
})}
|
|
|
|
tasks.withType(Test) {
|
|
scanForTestClasses = false
|
|
include "**/*Test.class"
|
|
exclude "**/*AndroidCalculatorEditorViewTest*"
|
|
exclude "**/*CalculatorWizardActivityTest*"
|
|
exclude "**/*OnScreenCalculatorWizardStepTest*"
|
|
exclude "**/*CalculatorWizardTest*"
|
|
exclude "**/*WizardStepTest*"
|
|
exclude "**/*AngleUnitsButtonTest*"
|
|
exclude "**/*NumeralBasesButtonTest*"
|
|
}
|
|
|
|
task androidJavadocs(type: Javadoc) {
|
|
source = android.sourceSets.main.java.srcDirs
|
|
classpath += project.files(android.bootClasspath.join(File.pathSeparator))
|
|
configurations.compile.each { File file -> classpath += project.files(file.path) }
|
|
}
|
|
|
|
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
|
|
classifier = 'javadoc'
|
|
from androidJavadocs.destinationDir
|
|
}
|
|
|
|
task androidSourcesJar(type: Jar) {
|
|
classifier = 'sources'
|
|
from android.sourceSets.main.java.srcDirs
|
|
}
|
|
|
|
artifacts {
|
|
archives androidSourcesJar
|
|
archives file: file('build/outputs/apk/app-release.apk'), name: 'calculatorpp-app', classifier: 'signed', type: 'apk'
|
|
archives file: file('build/outputs/mapping/release/mapping.txt'), name: 'calculatorpp-app', classifier: 'proguard', type: 'txt'
|
|
}
|
|
|
|
signing {
|
|
sign configurations.archives
|
|
}
|
|
|
|
group = "org.solovyev.android"
|
|
version = android.defaultConfig.versionName
|
|
|
|
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
beforeDeployment { MavenDeployment deployment ->
|
|
signing.signPom(deployment)
|
|
// for some reason Gradle :uploadArchives tries to upload null.txt.asc and null.map artifacts.
|
|
// As we don't want those let's filter them now (note that these files are not included in the
|
|
// list of project artifacts, so their origin is not clear)
|
|
def removeCond = { artifact -> return !artifact.classifier && (artifact.type == "map" || artifact.type == "txt.asc") }
|
|
deployment.artifacts.removeAll(removeCond)
|
|
deployment.attachedArtifacts.removeAll(removeCond)
|
|
}
|
|
|
|
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
}
|
|
|
|
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
}
|
|
|
|
pom.project {
|
|
artifactId = 'calculatorpp-app'
|
|
name 'Calculator++ Application'
|
|
packaging 'apk'
|
|
description 'Calculator for Android'
|
|
url 'https://github.com/serso/android-calculatorpp'
|
|
|
|
scm {
|
|
url 'https://github.com/serso/android-calculatorpp'
|
|
connection 'scm:https://serso@github.com/serso/android-calculatorpp.git'
|
|
developerConnection 'scm:git://github.com/serso/android-calculatorpp.git'
|
|
}
|
|
|
|
licenses {
|
|
license {
|
|
name 'The Apache Software License, Version 2.0'
|
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
|
|
developers {
|
|
developer {
|
|
id 'se.solovyev'
|
|
name 'Sergey Solovyev'
|
|
email 'se.solovyev@gmail.com'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |