summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2019-11-11 00:17:47 +0100
committerSander van der Burg <svanderburg@gmail.com>2019-11-11 00:18:22 +0100
commit9b51c5145ad58d49cefdba24d5bc53abb6017143 (patch)
tree7c77afda00352274d9d455776134e7635d1c1a06 /doc
parentea288463dbeb3ba025884814227a3c6b555b4278 (diff)
xcodeenv: bump default Xcode version to 11.1, default iOS SDK to 13.1. Add troubleshooting section to docs
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/ios.section.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/languages-frameworks/ios.section.md b/doc/languages-frameworks/ios.section.md
index 6684b809ffe6..5a81795c004a 100644
--- a/doc/languages-frameworks/ios.section.md
+++ b/doc/languages-frameworks/ios.section.md
@@ -1,7 +1,7 @@
---
title: iOS
author: Sander van der Burg
-date: 2018-11-18
+date: 2019-11-10
---
# iOS
@@ -217,3 +217,13 @@ xcode.simulateApp {
By providing the result of an `xcode.buildApp {}` function and configuring the
app bundle id, the app gets deployed automatically and started.
+
+Troubleshooting
+---------------
+In some rare cases, it may happen that after a failure, changes are not picked
+up. Most likely, this is caused by a derived data cache that Xcode maintains.
+To wipe it you can run:
+
+```bash
+$ rm -rf ~/Library/Developer/Xcode/DerivedData
+```