]> gitweb.stoutner.com Git - PrivacyCell.git/blob - gradle.properties
Release 1.10.
[PrivacyCell.git] / gradle.properties
1 # Copyright 2023 Soren Stoutner <soren@stoutner.com>.
2 #
3 # This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
4 #
5 # Privacy Cell is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Privacy Cell is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Project-wide Gradle settings.
19 # IDE (e.g. Android Studio) users:
20 # Gradle settings configured through the IDE *will override*
21 # any settings specified in this file.
22 # For more details on how to configure your build environment visit
23 # http://www.gradle.org/docs/current/userguide/build_environment.html
24 # Specifies the JVM arguments used for the daemon process.
25 # The setting is particularly useful for tweaking memory settings.
26 org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
27
28 # When configured, Gradle will run in incubating parallel mode.
29 # This option should only be used with decoupled projects. More details, visit
30 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
31 # org.gradle.parallel=true
32
33 # AndroidX package structure to make it clearer which packages are bundled with the
34 # Android operating system, and which are packaged with your app"s APK
35 # https://developer.android.com/topic/libraries/support-library/androidx-rn
36 android.useAndroidX=true
37
38 # Automatically convert third-party libraries to use AndroidX
39 android.enableJetifier=true
40
41 # Kotlin code style for this project: "official" or "obsolete":
42 kotlin.code.style=official
43
44 # Enable the configuration cache, which improves build speed.
45 org.gradle.unsafe.configuration-cache=true
46
47 # Use non-transitive R classes, which speed up the build process when the configuration has not changed.
48 android.nonTransitiveRClass=true
49
50 # Use non-final resource IDs for faster incremental compilation.
51 android.nonFinalResIds=true
52
53 android.defaults.buildfeatures.buildconfig=true