2016-02-22 22:04:42 +00: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 21:41:13 +00:00
|
|
|
# To create a new keystore for development purposes (https://developer.android.com/studio/publish/app-signing.html)
|
2017-12-08 10:03:16 +00:00
|
|
|
# $keytool -genkey -v -keystore ./status-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias status
|
2019-08-07 10:08:36 +00:00
|
|
|
|
|
|
|
# Version requirements used throughout the Gradle scripts
|
2020-05-03 10:46:53 +00:00
|
|
|
kotlinVersion=1.3.50
|
2019-08-06 16:16:51 +00:00
|
|
|
minSdkVersion=23
|
2021-09-02 12:24:09 +00:00
|
|
|
compileSdkVersion=30
|
|
|
|
targetSdkVersion=30
|
2021-07-22 13:38:59 +00:00
|
|
|
buildToolsVersion=31.0.0
|
2019-08-07 10:08:36 +00:00
|
|
|
supportLibVersion=28.0.0
|
2020-04-22 12:00:04 +00:00
|
|
|
# This should match version from nix/mobile/android/maven-and-npm-deps/maven/default.nix
|
2021-09-02 12:24:09 +00:00
|
|
|
gradlePluginVersion=3.5.4
|
2019-08-06 16:16:51 +00:00
|
|
|
|
|
|
|
android.useAndroidX=true
|
|
|
|
android.enableJetifier=true
|
2019-08-07 10:08:36 +00:00
|
|
|
|
2020-03-02 11:18:01 +00: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
|
|
|
|
2019-09-13 17:16:13 +00:00
|
|
|
# By default we build a mostly universal APK
|
|
|
|
ANDROID_ABI_SPLIT=false
|
|
|
|
# Some platforms are excluded though
|
|
|
|
ANDROID_ABI_INCLUDE=armeabi-v7a;arm64-v8a;x86
|
2019-05-31 18:39:53 +00:00
|
|
|
|
2018-12-10 12:09:11 +00:00
|
|
|
org.gradle.jvmargs=-Xmx8704M
|
2019-06-04 16:50:29 +00:00
|
|
|
|
|
|
|
versionCode=9999
|
2021-09-17 16:04:39 +00:00
|
|
|
commitHash=unknown
|
2020-05-01 07:20:06 +00:00
|
|
|
|
|
|
|
# Flipper
|
2021-01-07 12:59:57 +00:00
|
|
|
FLIPPER_VERSION=0.54.0
|