diff --git a/CHANGELOG.md b/CHANGELOG.md index 278c3900..fcb46db3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ x.x.x Release notes (yyyy-MM-dd) ### Bugfixes * Fix linker error when building for minimum target version of iOS 7. +* Fix for failure in `strip` command when building an archive. 0.14.0 Release notes (2016-6-22) ============================================================= diff --git a/react-native/ios/RealmReact.xcodeproj/project.pbxproj b/react-native/ios/RealmReact.xcodeproj/project.pbxproj index 708df929..91604d5c 100644 --- a/react-native/ios/RealmReact.xcodeproj/project.pbxproj +++ b/react-native/ios/RealmReact.xcodeproj/project.pbxproj @@ -288,6 +288,7 @@ ../../core/include, ); SDKROOT = iphoneos; + STRIP_INSTALLED_PRODUCT = NO; }; name = Debug; }; @@ -329,6 +330,7 @@ ../../core/include, ); SDKROOT = iphoneos; + STRIP_INSTALLED_PRODUCT = NO; VALIDATE_PRODUCT = YES; }; name = Release; diff --git a/src/RealmJS.xcodeproj/project.pbxproj b/src/RealmJS.xcodeproj/project.pbxproj index ee19823d..e9c73d05 100644 --- a/src/RealmJS.xcodeproj/project.pbxproj +++ b/src/RealmJS.xcodeproj/project.pbxproj @@ -959,6 +959,7 @@ "-ftemplate-backtrace-limit=0", ); SDKROOT = iphoneos; + STRIP_INSTALLED_PRODUCT = NO; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; @@ -1013,6 +1014,7 @@ "-ftemplate-backtrace-limit=0", ); SDKROOT = iphoneos; + STRIP_INSTALLED_PRODUCT = NO; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic";