2

Does anybode use Good Dynamics latest version (2.0.447) or any other with FIPS enabled? Application runs on sim but crashes on device. Here's the log:

enter image description here

p.s. it seems that I've done all necessary things such as adding these lines to xcconfig files

FIPS_PACKAGE=$(CURRENT_ARCH).sdk

LDPLUSPLUS=/Good Technology/Good.platform/FIPS_module/$FIPS_PACKAGE/bin/gd_fipsld LD=/Good Technology/Good.platform/FIPS_module/$FIPS_PACKAGE/bin/gd_fipsld

and also a couple of strings in target settings as recommended by the GD guide.

Stas
  • 9,831
  • 9
  • 39
  • 76

2 Answers2

0

I was struggling with this also. It turns out the default.xcconfig file that was present was not properly set up in the project settings (Project/Info/Configurations). The guidance I should have checked against is here: https://developer.apple.com/library/ios/recipes/xcode_help-project_editor/Articles/BasingBuildConfigurationsonConfigurationFiles.html

Matt Bearson
  • 915
  • 7
  • 15
0

Please check once Good SDK installation location in your mac with your default.xcconfig file in your xcode. This may be also cause the issue.

In default.xcconfig, replace the paths with the following code :

LDPLUSPLUS=/Good Technology/Good.platform/FIPS_module/$FIPS_PACKAGE/bin/gd_fipsld 
LDUTILDIR=/Good\ Technology/Good.platform/FIPS_module/$(CURRENT_ARCH).sdk/bin
Saurabh
  • 704
  • 1
  • 7
  • 26
user3460006
  • 112
  • 9