Skip to content

Commit

Permalink
fixes #194 -- speed up build times
Browse files Browse the repository at this point in the history
  • Loading branch information
sphrak committed May 8, 2020
1 parent 5cf6060 commit f5570b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ android:
- android-28
- android-29
script:
- "./gradlew ktlint"
- "./gradlew clean build"
- "./gradlew tasks"
- "./gradlew assembleGithub"
- "./gradlew :app:ktlint"
- "./gradlew :app:test"
- "./gradlew :app:assembleGithub"
before_install:
- openssl aes-256-cbc -K $encrypted_f7c7591dbff3_key -iv $encrypted_f7c7591dbff3_iv
-in .keystore.enc -out .keystore -d
Expand Down
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
org.gradle.jvmargs=-Xmx2048m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Expand All @@ -16,4 +16,6 @@ org.gradle.jvmargs=-Xmx1536m
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
android.enableJetifier=true
org.gradle.parallel=true
org.gradle.caching=true

0 comments on commit f5570b2

Please sign in to comment.