mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
Test Hugo one more time, it's working locally...
This commit is contained in:
parent
a01c7940ed
commit
597cfca710
@ -7,12 +7,14 @@ buildscript {
|
|||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
|
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
|
classpath 'com.jakewharton.hugo:hugo-plugin:+'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'android-sdk-manager'
|
apply plugin: 'android-sdk-manager'
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
|
apply plugin: 'hugo'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 20
|
compileSdkVersion 20
|
||||||
@ -42,14 +44,15 @@ android {
|
|||||||
exclude 'NOTICE'
|
exclude 'NOTICE'
|
||||||
exclude 'asm-license.txt'
|
exclude 'asm-license.txt'
|
||||||
}
|
}
|
||||||
|
// TODO: Remove Hugo and support SDK 8?
|
||||||
productFlavors {
|
productFlavors {
|
||||||
testConfig {
|
testConfig {
|
||||||
minSdkVersion 8
|
minSdkVersion 9
|
||||||
applicationId 'org.bspeice.minimalbible'
|
applicationId 'org.bspeice.minimalbible'
|
||||||
targetSdkVersion 20
|
targetSdkVersion 20
|
||||||
}
|
}
|
||||||
mainConfig {
|
mainConfig {
|
||||||
minSdkVersion 8
|
minSdkVersion 9
|
||||||
applicationId 'org.bspeice.minimalbible'
|
applicationId 'org.bspeice.minimalbible'
|
||||||
targetSdkVersion 20
|
targetSdkVersion 20
|
||||||
}
|
}
|
||||||
@ -57,6 +60,9 @@ android {
|
|||||||
sourceSets {
|
sourceSets {
|
||||||
main.java.srcDirs += 'src/main/kotlin'
|
main.java.srcDirs += 'src/main/kotlin'
|
||||||
}
|
}
|
||||||
|
lintOptions {
|
||||||
|
disable 'adviceDidNotMatch'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
Loading…
Reference in New Issue
Block a user