Skip to content

Commit

Permalink
fix(fonts.gradle): fix react native 0.73 build errors (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
alokparikh16 committed May 1, 2024
1 parent cab985e commit 0ebd7f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fonts.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ afterEvaluate {
if (lintVitalAnalyzeTask) {
lintVitalAnalyzeTask.dependsOn(fontCopyTask)
}

def generateReportTask = tasks.findByName("generate${targetName}LintVitalReportModel")
if (generateReportTask) {
generateReportTask.dependsOn(fontCopyTask)
}

def generateAssetsTask = tasks.findByName("generate${targetName}Assets")
generateAssetsTask.dependsOn(fontCopyTask)
Expand Down

0 comments on commit 0ebd7f4

Please sign in to comment.