Skip to content

Commit 6582785

Browse files
authored
fix: android build.gradle typo (#364)
1 parent 62a762a commit 6582785

File tree

1 file changed

+2
-2
lines changed
  • packages/create-react-native-library/templates/native-common/android

1 file changed

+2
-2
lines changed

packages/create-react-native-library/templates/native-common/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def registrationCompat = {
3636
? file("$projectDir/../node_modules/react-native/package.json") // developer mode, to run example app
3737
: file("$projectDir/../../react-native/package.json")
3838
def reactNativeVersion = new JsonSlurper().parseText(reactNativeManifest.text).version as String
39-
// Fabric was introduced at [email protected], full CMake support were introduced at react-native@0.71
39+
// Fabric was introduced at [email protected], full CMake support were introduced at react-native@0.70
4040
// Use Android.mk for compatibility with [email protected]/0.69
4141
reactNativeVersion.matches('(0.68.*|0.69.*)')
4242
}()
@@ -186,7 +186,7 @@ dependencies {
186186
if (isNewArchitectureEnabled()) {
187187
react {
188188
jsRootDir = file("../src/")
189-
<% if (project.view && (project.arch === "new" || project.arch === "mixed")) { %>
189+
<% if (project.view && (project.arch === "new" || project.arch === "mixed")) { -%>
190190
libraryName = codegenViewLibraryName
191191
<% } else { -%>
192192
libraryName = "<%- project.view ? project.name + 'View' : project.name -%>"

0 commit comments

Comments
 (0)