Skip to content

Commit

Permalink
rollback changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alduzy committed Aug 22, 2024
1 parent 93774db commit 270134b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
12 changes: 1 addition & 11 deletions FabricExample/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,4 @@ plugins { id("com.facebook.react.settings") }
extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> ex.autolinkLibrariesFromCommand() }
rootProject.name = 'FabricExample'
include ':app'
includeBuild('../node_modules/@react-native/gradle-plugin')

includeBuild('../node_modules/react-native') {
dependencySubstitution {
substitute(module("com.facebook.react:react-android")).using(project(":packages:react-native:ReactAndroid"))
substitute(module("com.facebook.react:react-native")).using(project(":packages:react-native:ReactAndroid"))
substitute(module("com.facebook.react:hermes-android")).using(project(":packages:react-native:ReactAndroid:hermes-engine"))
substitute(module("com.facebook.react:hermes-engine")).using(project(":packages:react-native:ReactAndroid:hermes-engine"))
}
}

includeBuild('../node_modules/@react-native/gradle-plugin')
8 changes: 4 additions & 4 deletions apps/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { enableFreeze } from 'react-native-screens';
// import Example from './Example';
import * as Test from './src/tests';
import Example from './Example';
// import * as Test from './src/tests';

enableFreeze(true);

export default function App() {
// return <Example />;
return <Test.Test1975 />;
return <Example />;
// return <Test.Test42 />;
}

0 comments on commit 270134b

Please sign in to comment.