mirror of
https://github.com/status-im/status-react.git
synced 2025-01-23 01:09:49 +00:00
Jakub Sokołowski
939ce8bef5
This makes use of the refactoring of Android SDK done in: https://github.com/NixOS/nixpkgs/pull/89775 Which allows us to drop the use of our own fork of `nixpkgs`. Android Upgrades: * Build Tools - `29.0.2` to `30.0.3` * Platform Tools - `29.0.6` to `30.0.5` * NDK Bundle - `21.0.6113669` to `21.3.6528147` Other Upgrades: * Git - `2.28.0` to `2.29.2` * Go - `1.14.7` to `1.14.13` * Clojure - `1.10.1.645` to `1.10.1.763` * NodeJS - `12.18.3` to `12.20.1` * Yarn - `1.22.4` to `1.22.10` * OpenJDK - `8u265-ga` to `8u272-b10` * PatchElf - `0.11` to `0.12` * CoreUtils - `8.31` to `8.32` Signed-off-by: Jakub Sokołowski <jakub@status.im>
54 lines
1.8 KiB
Properties
54 lines
1.8 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.
|
|
# 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
|
|
|
|
# To create a new keystore for development purposes (https://developer.android.com/studio/publish/app-signing.html)
|
|
# $keytool -genkey -v -keystore ./status-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias status
|
|
|
|
# Version requirements used throughout the Gradle scripts
|
|
kotlinVersion=1.3.50
|
|
minSdkVersion=23
|
|
compileSdkVersion=29
|
|
targetSdkVersion=29
|
|
buildToolsVersion=30.0.3
|
|
supportLibVersion=28.0.0
|
|
# This should match version from nix/mobile/android/maven-and-npm-deps/maven/default.nix
|
|
gradlePluginVersion=3.5.3
|
|
|
|
android.useAndroidX=true
|
|
android.enableJetifier=true
|
|
|
|
KEYSTORE_PATH=~/.gradle/status-im.keystore
|
|
KEYSTORE_PASSWORD=password
|
|
KEYSTORE_ALIAS=status
|
|
KEYSTORE_KEY_PASSWORD=password
|
|
|
|
# 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
|
|
# F-Droid builds need to be unsigned
|
|
ANDROID_APK_SIGNED=true
|
|
|
|
org.gradle.jvmargs=-Xmx8704M
|
|
|
|
versionCode=9999
|
|
|
|
# Flipper
|
|
FLIPPER_VERSION=0.35.0
|