2016-02-23 01:04:42 +03:00
|
|
|
# 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.
|
|
|
|
# Default value: -Xmx10248m -XX:MaxPermSize=256m
|
|
|
|
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2017-07-17 23:41:13 +02:00
|
|
|
# To create a new keystore for development purposes (https://developer.android.com/studio/publish/app-signing.html)
|
2017-12-08 11:03:16 +01:00
|
|
|
# $keytool -genkey -v -keystore ./status-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias status
|
2019-08-07 12:08:36 +02:00
|
|
|
|
|
|
|
# Version requirements used throughout the Gradle scripts
|
2023-10-24 11:48:36 +03:00
|
|
|
minSdkVersion=24
|
2024-03-22 19:51:44 +05:30
|
|
|
compileSdkVersion=34
|
|
|
|
targetSdkVersion=34
|
|
|
|
buildToolsVersion=34.0.0
|
2019-08-07 12:08:36 +02:00
|
|
|
supportLibVersion=28.0.0
|
2023-12-11 21:22:23 +05:30
|
|
|
# This should match version from nix/pkgs/aapt2/default.nix
|
|
|
|
gradlePluginVersion=7.4.2
|
2024-01-16 21:18:15 +05:30
|
|
|
kotlinPluginVersion=1.9.0
|
2019-08-06 18:16:51 +02:00
|
|
|
|
|
|
|
android.useAndroidX=true
|
|
|
|
android.enableJetifier=true
|
2019-08-07 12:08:36 +02:00
|
|
|
|
2020-03-02 12:18:01 +01:00
|
|
|
KEYSTORE_PATH=~/.gradle/status-im.keystore
|
|
|
|
KEYSTORE_PASSWORD=password
|
|
|
|
KEYSTORE_ALIAS=status
|
|
|
|
KEYSTORE_KEY_PASSWORD=password
|
2017-12-28 18:53:18 +00:00
|
|
|
|
2024-07-27 00:02:44 +05:30
|
|
|
# Splitting by CPU Architecture produces smaller APKs.
|
|
|
|
ANDROID_ABI_SPLIT=true
|
|
|
|
# By default its better to only build apk for most recent devices.
|
|
|
|
ANDROID_ABI_INCLUDE=arm64-v8a
|
2019-05-31 14:39:53 -04:00
|
|
|
|
2024-03-23 15:12:05 +05:30
|
|
|
org.gradle.jvmargs=-Xmx8704M -XX:+UseParallelGC
|
2019-06-04 18:50:29 +02:00
|
|
|
|
|
|
|
versionCode=9999
|
2021-09-17 18:04:39 +02:00
|
|
|
commitHash=unknown
|
2020-05-01 10:20:06 +03:00
|
|
|
|
2023-06-14 07:17:41 +05:30
|
|
|
# Use this property to enable support to the new architecture.
|
|
|
|
# This will allow you to use TurboModules and the Fabric render in
|
|
|
|
# your application. You should enable this flag either if you want
|
|
|
|
# to write custom TurboModules/Fabric components OR use libraries that
|
|
|
|
# are providing them.
|
|
|
|
newArchEnabled=false
|
2023-12-11 21:22:23 +05:30
|
|
|
|
|
|
|
# Use this property to enable or disable the Hermes JS engine.
|
|
|
|
# If set to false, you will be using JSC instead.
|
2024-02-01 20:56:18 +05:30
|
|
|
# Disabled for debug builds to avoid 'maximum call stack exceeded' errors.
|
|
|
|
# https://github.com/status-im/status-mobile/issues/18493
|
|
|
|
hermesEnabled=false
|