I use “xctool” command to build ios project that is in private repository
There are many warnings about cocoaPod in the build…
I use command is next:
xctool \
-reporter pretty \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY= \
PROVISIONING_PROFILE= \
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' \
-sdk iphonesimulator \
-workspace myworkspace.xcworkspace \
-scheme myworkspace \
build build-tests run-tests
This is a part of warnings:
2015-10-25 18:21:52.427 Interface Builder Cocoa Touch Tool[2084:12896] CoreUI: CUICatalog: couldn't get 'kMGArtworkGraphicsFeatureSetClass' from MGCopyAnswer got '{
ArtworkDeviceIdiom = pad;
ArtworkDeviceScaleFactor = "-1";
DevicePerformanceMemoryClass = 1;
}'
2015-10-25 18:21:52.427 Interface Builder Cocoa Touch Tool[2084:12896] CoreUI: CUICatalog: couldn't get 'kMGArtworkGraphicsFeatureSetFallbacks' from MGCopyAnswer got '{
ArtworkDeviceIdiom = pad;
ArtworkDeviceScaleFactor = "-1";
DevicePerformanceMemoryClass = 1;
}'
2015-10-25 18:21:52.466 Interface Builder Cocoa Touch Tool[2084:12896] CoreUI: CUICatalog: couldn't get 'kMGArtworkGraphicsFeatureSetClass' from MGCopyAnswer got '{
ArtworkDeviceIdiom = pad;
ArtworkDeviceScaleFactor = "-1";
DevicePerformanceMemoryClass = 1;
}'
...(continue more than 50 warnings)
In spite of many warnings, Test result is same as a result that is built in my local environment.
In My local environment doesn’t appear the warning.