Skip to content

Commit 7503d4a

Browse files
committed
Add ignore rule for react-native-navigation old build variants
1 parent 5d17bf4 commit 7503d4a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

android/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,12 @@ subprojects { subproject ->
4747
android {
4848
variantFilter { variant ->
4949
def names = variant.flavors*.name
50-
if (names.contains("reactNative51") || names.contains("reactNative55") || names.contains("reactNative57")) {
50+
if (names.contains("reactNative51") ||
51+
names.contains("reactNative55") ||
52+
names.contains("reactNative56") ||
53+
names.contains("reactNative57") ||
54+
names.contains("reactNative57_5")
55+
) {
5156
setIgnore(true)
5257
}
5358
}

0 commit comments

Comments
 (0)