ios-deploy -B
ios-deploy -W -b foobar.app
ios-deploy -d -W -b <DerivedDatapath to app build>/Debug-iphoneos/tinyDormant.app
http://www.mokacoding.com/blog/better-build-phase-scripts/
https://briksoftware.com/blog/archives/120/
This SO post shows how to get XCode's debug console as a new Window instead of a small debug Tab.
xcodebuild -list
xcodebuild -scheme "tinyScheme" -project tiny.xcodeproj
Read all environment variables available to Xcode: https://gist.github.com/gdavis/6670468
Or print it locally:
xcodebuild -project foobar.xcodeproj -target "foobar" -showBuildSettings
I moved away Build Scripts away from:
PROJECT_NAME
TARGETNAME
CURRENT_ARCH
As Xcode build tended to use the PRODUCT_NAME
and ARCHS
to get the correct env variable.
xcrun simctl list | egrep '(Booted)'
iPhone 8 (89ECF974-0740-4FBE-8388-BB25AC5503A3) (Booted)
Phone: iPhone 8 (89ECF974-0740-4FBE-8388-BB25AC5503A3) (Booted)
xcrun simctl launch booted <bundle_id>
xcrun simctl terminate booted <bundle_id>
/Users/.../Library/Developer/CoreSimulator/Devices/89ECF974-0740-4FBE-8388-BB25AC5503A3/data/Library/Keychains
/Users/.../Library/Developer/CoreSimulator/Devices/<device ID>/data/Containers/Data/Application/<app_uuid>/Documents
You can drag and drop .crt
or .der
certificate files to a simulator in xCode.
The iOS Simulator will auto open Springboard
(Settings) and ask for confirmation of trust. This is a great way to test UIWebView
or WKWebView
code with a self-signed certificate chain. Remember, you need to trust the Root CA and Int CA of a certificate chain
. I never load my leaf certificate.