Skip to content

Commit bfc4efa

Browse files
committedFeb 11, 2022
Add org.gradle.jvmargs=-Xmx2560m
hoping that the GitHub Action would not run out of memory.
1 parent dd3408b commit bfc4efa

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed
 

‎README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Its main components are:
88
- a speech keyboard that implements the [input method editor (IME) API](http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html)
99
- two implementations of [SpeechRecognizer](http://developer.android.com/reference/android/speech/SpeechRecognizer.html), backed by two open source speech recognition servers
1010
- <https://github.com/alumae/kaldi-gstreamer-server>
11-
- <https://github.com/alumae/ruby-pocketsphinx-server>
11+
- (not maintained) <https://github.com/alumae/ruby-pocketsphinx-server>
1212

1313
The SpeechRecognizer-implementations have been deprecated, we recommend to use the external app
1414
[Kõnele service](https://github.com/Kaljurand/K6nele-service) to connect to kaldi-gstreamer-server.
@@ -46,18 +46,12 @@ Point to the Android SDK directory by setting the environment variable
4646
In order to change your build environment create the file `gradle.properties`
4747
at a location pointed to by the environment variable `GRADLE_USER_HOME`.
4848
This will extend and override the definitions found in the `gradle.properties`
49-
that is part of the release. Add e.g.
50-
51-
org.gradle.jvmargs=-Xmx1536m
52-
org.gradle.parallel=true
53-
# Experimental (makes the APK a bit smaller)
54-
android.enableR8.fullMode=true
49+
that is part of the release.
5550

5651
Build the Kõnele app
5752

5853
./gradlew assemble
5954

60-
6155
If you have access to a release keystore then
6256

6357
- point to its location by setting the environment variable `KEYSTORE`

‎gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
android.enableJetifier=true
22
android.useAndroidX=true
3+
org.gradle.jvmargs=-Xmx2560m

0 commit comments

Comments
 (0)
Failed to load comments.