Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 9 - Couldn’t communicate with a helper application

Tags:

git

xcode

ios

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?

like image 297
georgij Avatar asked Nov 08 '22 15:11

georgij


1 Answers

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

like image 98
Pat_Morita Avatar answered Nov 15 '22 06:11

Pat_Morita