If i run the tns run ios
command for the app I'm developing my console outputs the following:
warning: Stale file '{pathToFile}/appname-Prefix.pch.gch' is located outside of the allowed root paths
Since I was wondering whether this was bad I turned to Google for answers. I could only find this:
- The warning is from Xcode
- It's about precompiled headers (I guess for Objective-C)
- ... that are probably misplaced.
- And of course a question on Stackoverflow, but not in relation to NativeScript.
I tried to remove the platform (tns platform remove ios
) and re-adding it. This didn't solve it.
Does anyone know how this file got located outside the allowed root path?
Can/should I fix this? I really like to understand the technology I'm working with.
Btw: The tns build
doesn't give any such warnings.