summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-01-22 10:21:40 -0500
committerJoel Fischer <joeljfischer@gmail.com>2018-01-22 10:21:40 -0500
commit292eaddc1af1baa959feff49ca2b41df9eafa4ff (patch)
tree0ac9230bf0e3897923f5b86d1269378fc4904e4b
parente478523f1d19ce7c67c69b0aba9f07e993d0d04a (diff)
parent3663c8619054d837da62b2d94c3989012477624b (diff)
downloadsdl_ios-292eaddc1af1baa959feff49ca2b41df9eafa4ff.tar.gz
Merge branch 'master' into develop
-rw-r--r--README.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index e0d72d9b3..f91da8c81 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,17 @@ If you are building a Swift app, then include both packaged frameworks for expan
##### Dynamic Framework
-Tagged to our releases is a dynamic framework file that can be drag-and-dropped into the application. Dynamic frameworks are supported on iOS 8+. **WARNING: You cannot submit your app to the app store with the framework as is. You MUST strip the simulator part of the framework first. Use a script such as Carthage's to accomplish this**.
+Tagged to our releases is a dynamic framework file that can be drag-and-dropped into the application. Dynamic frameworks are supported on iOS 8+. **WARNING: You cannot submit your app to the app store with the framework as is. You MUST strip the simulator part of the framework first. Strip the x64 and i386 portions first like so:**
+
+```
+lipo -remove i386 -remove x86_64 -o SmartDeviceLink.framework/SmartDeviceLink SmartDeviceLink.framework/SmartDeviceLink`
+```
+
+You can check the current architectures like so:
+
+```
+lipo -info SmartDeviceLink.framework/SmartDeviceLink
+```
### Reference Documentation