We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4553cd commit cf5b1fdCopy full SHA for cf5b1fd
packages/react-native-reanimated/android/build.gradle
@@ -518,7 +518,12 @@ dependencies {
518
519
implementation "com.facebook.react:react-android" // version substituted by RNGP
520
if (JS_RUNTIME == "hermes") {
521
- implementation "com.facebook.react:hermes-android" // version substituted by RNGP
+ if (System.getenv("BUILD_TYPE") == "release") {
522
+ def hermesPath = "../../@exodus/hermes-engine/android/";
523
+ releaseImplementation files(hermesPath + "hermes-release.aar")
524
+ } else {
525
+ implementation("com.facebook.react:hermes-android")
526
+ }
527
}
528
529
0 commit comments