Skip to content

Commit

Permalink
Fix bad string concatenation in build.gradle (software-mansion#2915)
Browse files Browse the repository at this point in the history
## Description

This was causing a build crash for me

## Changes

Use + for string concatenation in Groovy

## Test code and steps to reproduce

None

## Checklist

- [ ] Included code example that can be used to test this change
- [ ] Updated TS types
- [ ] Added TS types tests
- [ ] Added unit / integration tests
- [ ] Updated documentation
- [ ] Ensured that CI passes
  • Loading branch information
jpaas authored and aeddi committed Mar 22, 2022
1 parent 8312585 commit 17ea70a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android-npm/build.gradle
Expand Up @@ -99,10 +99,10 @@ while (!aar.exists()) {
println "\n\n\n"
println "****************************************************************************************"
println "\n\n\n"
println "WARNING reanimated - no version-specific reanimated AAR for react-native version " . minor . " found."
println "Falling back to AAR for react-native version " . minorCopy
println "WARNING reanimated - no version-specific reanimated AAR for react-native version " + minor + " found."
println "Falling back to AAR for react-native version " + minorCopy
println "The react-native JSI interface is not ABI-safe yet, this may result in crashes."
println "Please post a pull request to implement support for react-native version " . minor . " to the reanimated repo."
println "Please post a pull request to implement support for react-native version " + minor + " to the reanimated repo."
println "Thanks!"
println "\n\n\n"
println "****************************************************************************************"
Expand Down

0 comments on commit 17ea70a

Please sign in to comment.