I use
First, when I add t
It looks like I found the problem. Once you have ARC (Automatic Reference Counting) disabled in your XCode Project (Project->Build Settings) the Network-Information Plugin seems to cause a crash. So I fixed it by setting the option back to YES (in both Target & Project).
But in my case I had some classes which causes the build to fail with ARC YES. Therefore I added a flag -fno-objc-arc
for each those classes in Project->Build Phases->Compile Sources.