mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
Jakub Sokołowski
33b2e12e3b
There are a few fixes here: * Changes format of Gradle deps to `:buildEnvironment` and `:dependencies`: ``` Cannot locate tasks that match '::buildEnvironment'. The path should not include an empty segment (try ':buildEnvironment' instead). ``` * Fix for GNU Parallel tool to use stdin for list of arguments: ``` nix/deps/gradle/generate.sh: line 55: parallel: Argument list too long ``` * Update of Facebook Fresco dependencies from `2.2.0` to `2.5.0` to fix: ``` > echo com.facebook.fresco:animated-gif:2.2.0 | ./go-maven-resolver > /dev/null finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:imagepipeline-native:2.2.0 O=false S=compile > finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:memory-type-native:2.2.0 O=false S=compile > finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:imagepipeline:2.2.0 O=false S=compile > finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:drawee:2.2.0 O=false S=runtime > finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:memory-type-java:2.2.0 O=false S=compile > finder.go:121: error: 'no pom data' for: <Dep ID=com.facebook.fresco:fbcore:2.2.0 O=false S=runtime > ``` * Remove Flipper to avoid pulling in Fresco `2.2.0` versions: ``` +--- com.facebook.flipper:flipper-fresco-plugin:0.54.0 | +--- com.facebook.fresco:fresco:2.2.0 -> 2.5.0 | +--- com.facebook.fresco🐬2.2.0 | \--- com.facebook.fresco:stetho:2.2.0 ``` Thanks for help from Sidarth. Resolves: https://github.com/status-im/status-mobile/issues/16367 Signed-off-by: Jakub Sokołowski <jakub@status.im>
58 lines
2.1 KiB
Properties
58 lines
2.1 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.6.20
|
|
minSdkVersion=23
|
|
compileSdkVersion=31
|
|
targetSdkVersion=31
|
|
buildToolsVersion=31.0.0
|
|
supportLibVersion=28.0.0
|
|
# This should match version from nix/mobile/android/maven-and-npm-deps/maven/default.nix
|
|
gradlePluginVersion=7.2.2
|
|
kotlinPluginVersion=1.6.20
|
|
|
|
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
|
|
|
|
org.gradle.jvmargs=-Xmx8704M
|
|
|
|
versionCode=9999
|
|
commitHash=unknown
|
|
|
|
# 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
|