-
Notifications
You must be signed in to change notification settings - Fork 74
/
gradle.properties
49 lines (49 loc) · 2.09 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
# 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=-Xmx3072m
# 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
# org.gradle.parallel=true
# Turn on the Gradle daemon: https://docs.gradle.org/current/userguide/gradle_daemon.html
org.gradle.daemon=true
# We want the ability to turn off Proguard at will.
runProguard=false
defaultProguardFile=proguard-android-optimize.txt
# Android-specific flags
android.useAndroidX=true
android.enableJetifier=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
android.suppressUnsupportedCompileSdk=34
# Manifest URL endpoint
# These are currently the same as the API endpoints declared earlier. Those will be removed later
# once the country selection feature is complete.
manifestEndpoint=https://api-qa.simple.org/api/
# Needed to switch NDK versions on the CI server since they have different
# NDK versions on macOS and Linux environments. Gradle plugin 3.6+ requires
# us to pin an NDK version if we package native libs.
# https://developer.android.com/studio/releases/gradle-plugin#default-ndk-version
#
# Currently, this is only used for assembling the APK where the build process
# strips debug symbols from the APK.
androidNdkVersion=21.3.6528147
# Sentry config
sentryDsn=do_not_change_here
sentryEnvironment=dev
# App behaviour
disableScreenshot=false
allowRootedDevice=true
# Datadog config
datadogApplicationId=do_not_change_here
datadogClientToken=do_not_change_here
datadogEnvironment=qa
datadogServiceName=simple-android
maestroTests=false
org.gradle.unsafe.configuration-cache=true