-
Notifications
You must be signed in to change notification settings - Fork 7
/
gradle.properties
51 lines (45 loc) · 2.21 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Copyright © 2020 TomTom NV. All rights reserved.
#
# This software is the proprietary copyright of TomTom NV and its subsidiaries and may be
# used for internal evaluation purposes or commercial use strictly subject to separate
# license agreement between you and TomTom NV. If you are the licensee, you are only permitted
# to use this software in accordance with the terms of your license agreement. If you are
# not the licensee, you are not authorized to use this software in any manner and should
# immediately return or destroy it.
#
# 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
org.gradle.jvmargs=-Xmx12g -XX:MaxMetaspaceSize=12g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dfile.encoding=UTF-8
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.workers.max=12
# Disable configure on demand as it makes dependency evaluation unstable.
org.gradle.configureondemand=false
org.gradle.caching=true
# In order to catch potential issues faster, configure to fail on any warning emitted during script
# compilation
org.gradle.kotlin.dsl.allWarningsAsErrors=true
# Make Android plugin uses the appropriate AndroidX library instead of a Support Library
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Kotlin Annotation Processing
# Use parallelization to speed up processing.
kapt.use.worker.api=true
# Don't include the classpath when discovering annotations.
kapt.include.compile.classpath=false
# Set annotation processing to be incremental.
kapt.incremental.apt=true
# Report an error if there are any warnings during Kotlin compilation process.
# It is possible to overwrite it in your 'local.properties' file.
kotlinOptions.allWarningsAsErrors=true
applicationKeystore=resources/keystore/com.example.ivi.example.keystore
applicationKeystorePassword=resources/keystore/com.example.ivi.example.keystorePassword
# Whether to build the Alexa examples.
# Disabled by default.
optInToAlexaExamples=false