12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #
- # Nextcloud Talk application
- #
- # @author Mario Danic
- # @author Tim Krüger
- # Copyright (C) 2021 Tim Krüger <t@timkrueger.me>
- # Copyright (C) 2017-2019 Mario Danic <mario@lovelyhq.com>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Project-wide Gradle settings.
- # IDE (e.g. Android Studio) users:
- # Gradle settings configured through the IDE *will override*
- # any settings specified in this file.
- # For more details on how to configure your build environment visit
- # 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=-XX:MaxHeapSize\=2048m -Xmx2048m
- android.useAndroidX=true
- android.enableJetifier=true
- android.nonTransitiveRClass=false
- android.nonFinalResIds=false
- # org.gradle.parallel=true
- org.gradle.daemon=true
- org.gradle.configureondemand=true
- org.gradle.caching=true
- org.gradle.parallel=true
- NC_TEST_SERVER_BASEURL=http://server
- NC_TEST_SERVER_USERNAME=user1
- NC_TEST_SERVER_PASSWORD=user1
|