-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
null is not an object RNAppTour.show Sequence #105
Comments
Hi, have you found the solution? I have the same problem |
There was an issue in my pod file. I was using use_frameworks! in my podfile. Once I removed it and did pod install it started working for me. |
How did you link the framework MaterialShowcase then? Did you create the folder RNAppTour and drug Pod.xcodepoject from node-modules/react-native-app-tour/ios? |
Hi, Is this module still maintained ?
I haven't found any alternatives to this module which seems very nice by the way. |
in case someone looking for solution. React native version 0.63.3
|
RNAppTour.ShowSequence shows error on runtime. The AppTour does not launch
componentDidMount() {
setTimeout(() => {
let appTourSequence = new AppTourSequence();
this.appTourTargets.forEach((appTourTarget) => {
appTourSequence.add(appTourTarget);
});
AppTour.ShowSequence(appTourSequence);
}, 1000);
}
Config used in app :
"dependencies": {
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-app-tour": "^1.0.3"
}
The text was updated successfully, but these errors were encountered: