From 597cfca710018b60fb8dfb076b0d80d0b906829e Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 13 Sep 2014 00:44:36 -0400 Subject: [PATCH] Test Hugo one more time, it's working locally... --- app/build.gradle | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7a10c38..4a4f60d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,12 +7,14 @@ buildscript { dependencies { classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.jakewharton.hugo:hugo-plugin:+' } } apply plugin: 'android-sdk-manager' apply plugin: 'com.android.application' apply plugin: 'kotlin-android' +apply plugin: 'hugo' android { compileSdkVersion 20 @@ -42,14 +44,15 @@ android { exclude 'NOTICE' exclude 'asm-license.txt' } + // TODO: Remove Hugo and support SDK 8? productFlavors { testConfig { - minSdkVersion 8 + minSdkVersion 9 applicationId 'org.bspeice.minimalbible' targetSdkVersion 20 } mainConfig { - minSdkVersion 8 + minSdkVersion 9 applicationId 'org.bspeice.minimalbible' targetSdkVersion 20 } @@ -57,6 +60,9 @@ android { sourceSets { main.java.srcDirs += 'src/main/kotlin' } + lintOptions { + disable 'adviceDidNotMatch' + } } dependencies {