fix gradle google free variable (#13064)
This commit is contained in:
parent
dc8cbcde56
commit
fd894dc339
|
@ -126,7 +126,7 @@ def enableHermes = project.ext.react.get("enableHermes", false);
|
||||||
/**
|
/**
|
||||||
* Exclude google library so we can publish to external android stores
|
* Exclude google library so we can publish to external android stores
|
||||||
*/
|
*/
|
||||||
def googleFree = project.env.get("GOOGLE_FREE", false)
|
def googleFree = project.env.get("GOOGLE_FREE", 0) == '1'
|
||||||
|
|
||||||
def getCommitHash = { ->
|
def getCommitHash = { ->
|
||||||
if (project.hasProperty("commitHash")) {
|
if (project.hasProperty("commitHash")) {
|
||||||
|
|
Loading…
Reference in New Issue