Fix Android unsigned releases to work with Hermes (#3841)

This commit is contained in:
Amit Uttam
2020-01-21 15:49:37 -03:00
committed by Miguel Alatzar
parent b6e6d4c9e0
commit b8ee415db7

View File

@@ -232,6 +232,7 @@ dependencies {
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
unsignedImplementation files(hermesPath + "hermes-release.aar")
} else {
implementation jscFlavor
}