Remove Hugo, it keeps on breaking the build...

robolectric-error
Bradlee Speice 2014-09-14 22:19:56 -04:00
parent df5700107d
commit ef7b8f82fa
2 changed files with 3 additions and 9 deletions

View File

@ -7,14 +7,12 @@ 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
@ -44,15 +42,14 @@ android {
exclude 'NOTICE'
exclude 'asm-license.txt'
}
// TODO: Remove Hugo and support SDK 8?
productFlavors {
testConfig {
minSdkVersion 9
minSdkVersion 8
applicationId 'org.bspeice.minimalbible'
targetSdkVersion 20
}
mainConfig {
minSdkVersion 9
minSdkVersion 8
applicationId 'org.bspeice.minimalbible'
targetSdkVersion 20
}
@ -60,9 +57,6 @@ android {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'adviceDidNotMatch'
}
}
dependencies {

View File

@ -10,7 +10,7 @@
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit