diff options
author | Teddy Wing | 2018-10-08 18:19:39 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-08 18:23:46 +0200 |
commit | ce6854f2de7d6301a4b9937159536cc855ce8818 (patch) | |
tree | a55b5202f5853e622411ded7f487e0b0ece6e57b /export-options.plist | |
parent | 995ec750f18f32217b9368b57bdef28d7ef64b30 (diff) | |
download | Word-Count-ce6854f2de7d6301a4b9937159536cc855ce8818.tar.bz2 |
Add Makefile to build and archive the application
Thanks to these resources, in addition to the `xcodebuild` man page, for
explaining how to do the archiving:
- http://subathrathanabalan.com/2016/01/07/building-ipa-export-archive/
- https://medium.com/xcblog/xcodebuild-deploy-ios-app-from-command-line-c6defff0d8b8
- https://bitbar.com/tipstricks-how-to-archive-and-export-ipa-from-script/
Diffstat (limited to 'export-options.plist')
-rw-r--r-- | export-options.plist | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/export-options.plist b/export-options.plist new file mode 100644 index 0000000..98e54bb --- /dev/null +++ b/export-options.plist @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" + "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>method</key> + <string>mac-application</string> +</dict> +</plist> |