Skip to content

Commit

Permalink
fix(android): unexpected token
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-rudge authored and mikehardy committed Apr 23, 2022
1 parent a0dd6e0 commit 32bff66
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/react-native/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ plugins {
}

if (project.hasProperty('reactNativeProjects')) {
reactNativeProjects.each(dependent -> project.evaluationDependsOn(dependent))
reactNativeProjects.each { dependent ->
project.evaluationDependsOn(dependent)
}
} else {
project.evaluationDependsOn(':app')
}
Expand Down

0 comments on commit 32bff66

Please sign in to comment.