From 427e772736285b9f7a610ad1f99aca63e3d77675 Mon Sep 17 00:00:00 2001 From: Mariotaku Lee Date: Fri, 26 Jun 2015 17:24:11 +0800 Subject: [PATCH] changed gradle properties for ci --- .travis.yml | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 832f8ae07..b025de95b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,10 +22,10 @@ android: # - sys-img-armeabi-v7a-android-19 # - sys-img-x86-android-17 -script: ./gradlew build +script: ./gradlew build --no-daemon before_install: - sudo apt-get update -qq - sudo apt-get install -y python2.7 -after_success: ./scripts/travis_upload_release_to_github.py \ No newline at end of file +after_success: ./scripts/travis_upload_release_to_github.py diff --git a/gradle.properties b/gradle.properties index c00f6811c..461d127b9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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=-Xmx10248m -XX:MaxPermSize=1024m -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