Skip to content

Commit

Permalink
Fix generate relay list order
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Dec 19, 2024
1 parent cdaaf8c commit e254a0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,10 @@ android {
createDistBundle.dependsOn("bundle$capitalizedVariantName")

// Ensure that we have all the JNI libs before merging them.
tasks["merge${capitalizedVariantName}JniLibFolders"].apply {
tasks["merge${capitalizedVariantName}Assets"].apply {
dependsOn(tasks["generateRelayList"])
}
tasks["merge${capitalizedVariantName}JniLibFolders"].apply {
dependsOn("cargoBuild")
}

Expand Down

0 comments on commit e254a0b

Please sign in to comment.