react-native-gesture-handler 2.21.1 → 2.21.2
Sign up to get free protection for your applications and to get access to all the features.
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
@@ -69,7 +69,7 @@ def shouldUseCommonInterfaceFromReanimated() {
|
|
69
69
|
def json = new JsonSlurper().parseText(inputFile.text)
|
70
70
|
def reanimatedVersion = json.version as String
|
71
71
|
def (major, minor, patch) = reanimatedVersion.tokenize('.')
|
72
|
-
return (Integer.parseInt(major) == 2 && Integer.parseInt(minor) >= 3) || Integer.parseInt(major)
|
72
|
+
return (Integer.parseInt(major) == 2 && Integer.parseInt(minor) >= 3) || Integer.parseInt(major) >= 3
|
73
73
|
} else {
|
74
74
|
return false
|
75
75
|
}
|
package/package.json
CHANGED