I am trying to build RealityEditor but I am getting an error
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSURL initFileURLWithPath:]: nil string parameter'**
in the file 'ofAppiOSWindow.mm'
The function where it is failing is
void ofAppiOSWindow::startAppWithDelegate(string appDelegateClassName) {
static bool bAppCreated = false;
if(bAppCreated == true) {
return;
}
bAppCreated = true;
@autoreleasepool {
UIApplicationMain(0, nil, nil, [NSString stringWithUTF8String:appDelegateClassName.c_str()]);
}
}
The error hits at UIApplicationMain(0, nil, nil, [NSString stringWithUTF8String:appDelegateClassName.c_str()]);
Please help.