a716f4e435
fixes #18291 ## Summary Changes worth mentioning are : - More hacks/patches - Force app to use `Java 17` everywhere to compile `kotlin,java` - `gems` were upgraded after a long time - `aapt2` was bumped to `8.1.1` - `metro` is now at `0.80.4` - `xcbeautify` was bumped to `1.4.0` - `@react-native-community/clipboard` lib was replaced with `@react-native-clipboard/clipboard` - `react-native-dialogs` lib was upgraded to `1.1.2` - `react-native-gesture-handler` lib was upgraded to `2.14.1` - `react-native-navigation` was upgraded to `7.37.2` ## Platforms - Android - iOS |
||
---|---|---|
.. | ||
README.md | ||
default.nix |
README.md
Description
This Nix derivation takes the result of the nix/deps/nodejs/default.nix
derivation and adjusts it for use with Gradle.
Details
Modules provided by yarn2nix
are normally fine, but we use react-native-*
packages which have their own gradle.build
files that reference external Maven repositories:
repositories {
google()
maven { url "https://www.jitpack.io" }
}
And these need to be patched and replaced with mavenLocal()
to make sure Gradle doesn't try to fetch dependencies from remote repos.
This derivation symlinks most of the modules found in the yarn2nix
result and copies the ones that require patching of gradle.build
files in patchGradlePhase
.
It also applies other fixes like making BuildId
static in patchBuildIdPhase
and fixing a Hermes bug in patchHermesPhase
.