5

After updating some libraries have a strange problem. Xcode seems to have now a problem with two framework files (GooglePlaces.framework and GoogleMapsBase.framework).

enter image description here

It recognizes that they have changed but is totally reluctant to commit with the message: "Couldn’t communicate with a helper application." (If I unselect them I can commit without problems) Have someone experiences this?

georgij
  • 2,054
  • 4
  • 27
  • 43

1 Answers1

1

The solution is to add changes with a git command. Change to your working directory (that contains a /.git folder) and execute:

git commit -a -m "Commit title here"

After that your git should work as usual. In one case i had to remove and re-add the framework.

Answer is from this thread: Xcode 9 commit: Couldn't communicate with helper application

Pat_Morita
  • 3,355
  • 3
  • 25
  • 36
  • Yes, I already found out that I sometimes need to fix things outside of Xcode. But it shouldn't be like that. – georgij Dec 23 '17 at 14:16
  • Worked perfectly! Because it wasn't clear to me at first, just want to mention that you still need to push to the git. I was able to do that within Xcode after running this command in Terminal. – Ben Apr 17 '19 at 22:09