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

This commit is contained in:
Mattermost Build 2020-01-21 19:50:27 +01:00 committed by Amit Uttam
parent 0b81a9b4e0
commit a7dc68b40b

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
}