Xcode settings got wiped and some iOS files possibly lost through a git issue. Now the app won't start up (errors below). I re-done the whole library linking process and re-traced the steps but the app won't start.
Errors:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_RNNCustomViewController", referenced from:
objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)https://wix.github.io/react-native-navigation/#/docs/Installing?id=requirements say to edit .h and .m, is there a specific example of what AppDelegate.h should look like?
App.js:
import { Navigation } from 'react-native-navigation';
import AuthScreen from './src/screens/Auth/Auth';
import SequencesList from './src/screens/SequencesList/SequencesList';
Navigation.registerComponent("my-app.AuthScreen", () => AuthScreen);
Navigation.registerComponent("my-app.App", () => App);
Navigation.registerComponent("my-app.SequencesList", () => SequencesList);
Navigation.startSingleScreenApp({
screen: {
screen: "my-app.SequencesList",
title: "Sequences"
}
});



Hey there, startSingleScreenApp is v1 api and you have v2 installed.
You can refer to the migration guide for more info.
Most helpful comment
Hey there,
startSingleScreenAppis v1 api and you have v2 installed.You can refer to the migration guide for more info.