mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-14 01:25:05 +08:00
19500a8cd9
Use fully qualified R classes Fix or ignore deprecation Update github actions and ensure JDK 17 is used Add group for paparazzi Fixes Lint issues Fix Jacoco configuration
46 lines
1.7 KiB
Properties
46 lines
1.7 KiB
Properties
# 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.
|
|
|
|
# Build Time Optimizations
|
|
org.gradle.jvmargs=-Xmx4g -Xms512M -XX:MaxPermSize=2048m -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
|
|
org.gradle.configureondemand=true
|
|
org.gradle.parallel=true
|
|
org.gradle.vfs.watch=true
|
|
org.gradle.caching=true
|
|
|
|
# Android Settings
|
|
android.enableJetifier=true
|
|
android.jetifier.ignorelist=android-base-common,common
|
|
android.useAndroidX=true
|
|
|
|
#Project Settings
|
|
# Change debugPrivateData to true for debugging
|
|
vector.debugPrivateData=false
|
|
# httpLogLevel values: NONE, BASIC, HEADERS, BODY
|
|
vector.httpLogLevel=BASIC
|
|
|
|
# Note: to debug, you can put and uncomment the following lines in the file ~/.gradle/gradle.properties to override the value above
|
|
#vector.debugPrivateData=true
|
|
#vector.httpLogLevel=BODY
|
|
|
|
# Dummy values for signing secrets
|
|
signing.element.storePath=pathTo.keystore
|
|
signing.element.storePassword=Secret
|
|
signing.element.keyId=Secret
|
|
signing.element.keyPassword=Secret
|
|
|
|
# Dummy values for signing secrets / nightly
|
|
signing.element.nightly.storePassword=Secret
|
|
signing.element.nightly.keyId=Secret
|
|
signing.element.nightly.keyPassword=Secret
|
|
|
|
# Customise the Lint version to use a more recent version than the one bundled with AGP
|
|
# https://googlesamples.github.io/android-custom-lint-rules/usage/newer-lint.md.html
|
|
android.experimental.lint.version=8.6.0-alpha08
|