Jonas Larsen
Jonas Larsen
I'm also experiencing this issue. Any updates?
I fixed this by writing a small script in the Podfile that removes the unwanted build scripts from other targets. Replace PROJ-FILE with your own .xcodeproj file and TARGET-NAME with...
It's here, sorry. ``` def remove_carte_scripts(target) target.build_phases .select { |p| p.kind_of? Xcodeproj::Project::Object::PBXShellScriptBuildPhase and \ not p.name.nil? and \ p.name.include?("Carte") } .each { |p| index = target.build_phases.index(p) target.build_phases.delete_at(index) } puts("Removed Carte...
I experience the exact same problem after updating to the same Z2M version. I also use a Skyconnect as coordinator, and I am also having troubles with my Aqara TRV....