I have been landed an iOS project from a client. The main task is to explore and see the user interface so that multiplatform app will be made from scratch with Xamarin.
I notice that the project uses third party framework called fabric. From what i see it is used from crash analytics. I don't need that and i don't have registration so i want to remove all dependencies from the project.
So far I did:
- Deleted
define ENABLE_FABRIC
( which removed some code from AptDelegate, replaced logging messages with plain NSLog etc) - Removed some fabric script invocation from build phases
- Removed reference from fabric framework in project
So i still have errors building my app:
/bin/sh: /Users/macmini/Library/Developer/Xcode/DerivedData/../Build/Intermediates/../Script-FDC6FCE81A4488D000F2613D.sh: (null): bad interpreter: No such file or directory
Does anyone know a quick way to get rid of this?