2016-08-30 01:25:43 +02:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2015-08-15 22:36:45 +02:00
|
|
|
apply plugin: 'findbugs'
|
|
|
|
apply plugin: 'pmd'
|
|
|
|
|
|
|
|
def ABORT_ON_CHECK_FAILURE=false
|
2015-01-07 14:00:18 +01:00
|
|
|
|
2016-08-30 01:25:43 +02:00
|
|
|
tasks.withType(Test) {
|
|
|
|
systemProperty 'MiFirmwareDir', System.getProperty('MiFirmwareDir', null)
|
|
|
|
systemProperty 'logback.configurationFile', System.getProperty('user.dir', null) + '/app/src/main/assets/logback.xml'
|
|
|
|
systemProperty 'GB_LOGFILES_DIR', java.nio.file.Files.createTempDirectory('gblog').toString();
|
|
|
|
}
|
2016-03-17 23:41:41 +01:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
android {
|
2016-08-26 23:27:53 +02:00
|
|
|
compileOptions {
|
|
|
|
// for KitKat
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2017-03-03 14:35:44 +01:00
|
|
|
compileSdkVersion 25
|
2017-03-03 09:33:57 +01:00
|
|
|
buildToolsVersion '25.0.2'
|
2015-01-07 14:00:18 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-04-29 23:24:12 +02:00
|
|
|
applicationId "nodomain.freeyourgadget.gadgetbridge"
|
2015-11-23 22:49:11 +01:00
|
|
|
minSdkVersion 19
|
2017-03-03 14:35:44 +01:00
|
|
|
targetSdkVersion 25
|
2015-12-07 18:10:00 +01:00
|
|
|
|
|
|
|
// note: always bump BOTH versionCode and versionName!
|
2017-05-08 22:04:24 +02:00
|
|
|
versionName "0.19.2"
|
|
|
|
versionCode 95
|
2016-10-21 13:01:30 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2015-08-15 22:36:45 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError ABORT_ON_CHECK_FAILURE
|
|
|
|
lintConfig file("${project.rootDir}/config/lint/lint.xml")
|
|
|
|
|
|
|
|
// if true, generate an HTML report (with issue explanations, sourcecode, etc)
|
|
|
|
htmlReport true
|
|
|
|
// optional path to report (default will be lint-results.html in the builddir)
|
|
|
|
htmlOutput file("$project.buildDir/reports/lint/lint.html")
|
|
|
|
}
|
2015-08-22 01:08:46 +02:00
|
|
|
|
|
|
|
testOptions {
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
}
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
|
2016-08-26 22:27:17 +02:00
|
|
|
pmd {
|
2017-04-08 23:59:00 +02:00
|
|
|
toolVersion = '5.5.5'
|
2016-08-26 22:27:17 +02:00
|
|
|
}
|
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
dependencies {
|
2016-05-26 23:46:21 +02:00
|
|
|
// testCompile 'ch.qos.logback:logback-classic:1.1.3'
|
|
|
|
// testCompile 'ch.qos.logback:logback-core:1.1.3'
|
2015-08-22 01:08:46 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
testCompile "org.mockito:mockito-core:1.9.5"
|
2017-04-08 23:42:29 +02:00
|
|
|
testCompile "org.robolectric:robolectric:3.3.2"
|
2015-08-22 01:08:46 +02:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2017-03-31 18:17:53 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
|
|
compile 'com.android.support:design:25.3.1'
|
2017-04-08 23:36:16 +02:00
|
|
|
compile 'com.github.tony19:logback-android-classic:1.1.1-6'
|
2015-05-13 23:15:20 +02:00
|
|
|
compile 'org.slf4j:slf4j-api:1.7.7'
|
2017-04-01 23:56:53 +02:00
|
|
|
compile 'com.github.PhilJay:MPAndroidChart:v3.0.2'
|
2015-07-20 23:11:16 +02:00
|
|
|
compile 'com.github.pfichtner:durationformatter:0.1.1'
|
2016-03-02 00:36:39 +01:00
|
|
|
compile 'de.cketti.library.changelog:ckchangelog:1.2.2'
|
2016-05-16 17:30:11 +02:00
|
|
|
compile 'net.e175.klaus:solarpositioning:0.0.9'
|
2017-04-10 21:36:44 +02:00
|
|
|
// use pristine greendao instead of our custom version, since our custom jitpack-packaged
|
|
|
|
// version contains way too much and our custom patches are in the generator only.
|
|
|
|
compile 'org.greenrobot:greendao:2.2.1'
|
2017-04-08 23:36:16 +02:00
|
|
|
compile 'org.apache.commons:commons-lang3:3.5'
|
2016-08-14 22:33:41 +02:00
|
|
|
|
|
|
|
// compile project(":DaoCore")
|
2016-03-27 22:13:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
preBuild.dependsOn(":GBDaoGenerator:genSources")
|
|
|
|
gradle.beforeProject {
|
|
|
|
preBuild.dependsOn(":GBDaoGenerator:genSources")
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
2015-08-15 22:36:45 +02:00
|
|
|
|
|
|
|
check.dependsOn 'findbugs', 'pmd', 'lint'
|
|
|
|
|
|
|
|
task pmd(type: Pmd) {
|
|
|
|
ruleSetFiles = files("${project.rootDir}/config/pmd/pmd-ruleset.xml")
|
|
|
|
ignoreFailures = !ABORT_ON_CHECK_FAILURE
|
|
|
|
ruleSets = [
|
|
|
|
'java-android',
|
|
|
|
'java-basic',
|
|
|
|
'java-braces',
|
|
|
|
'java-clone',
|
|
|
|
'java-codesize',
|
|
|
|
'java-controversial',
|
|
|
|
'java-coupling',
|
|
|
|
'java-design',
|
|
|
|
'java-empty',
|
|
|
|
'java-finalizers',
|
|
|
|
'java-imports',
|
|
|
|
'java-junit',
|
|
|
|
'java-optimizations',
|
|
|
|
'java-strictexception',
|
|
|
|
'java-strings',
|
|
|
|
'java-sunsecure',
|
|
|
|
'java-typeresolution',
|
|
|
|
'java-unnecessary',
|
|
|
|
'java-unusedcode'
|
|
|
|
]
|
|
|
|
|
|
|
|
source 'src'
|
|
|
|
include '**/*.java'
|
|
|
|
exclude '**/gen/**'
|
|
|
|
|
|
|
|
reports {
|
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
|
|
|
xml {
|
|
|
|
destination "$project.buildDir/reports/pmd/pmd.xml"
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
destination "$project.buildDir/reports/pmd/pmd.html"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task findbugs(type: FindBugs) {
|
|
|
|
ignoreFailures = !ABORT_ON_CHECK_FAILURE
|
|
|
|
effort = "default"
|
|
|
|
reportLevel = "medium"
|
|
|
|
excludeFilter = new File("${project.rootDir}/config/findbugs/findbugs-filter.xml")
|
|
|
|
classes = files("${project.rootDir}/app/build/intermediates/classes")
|
|
|
|
source = fileTree('src/main/java/')
|
|
|
|
classpath = files()
|
|
|
|
reports {
|
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
|
|
|
xml {
|
|
|
|
destination "$project.buildDir/reports/findbugs/findbugs-output.xml"
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
destination "$project.buildDir/reports/findbugs/findbugs-output.html"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|