gym/README.md in fastlane-2.44.0.beta.20170630010021 vs gym/README.md in fastlane-2.44.0
- old
+ new
@@ -173,9 +173,23 @@
},
thinning: "<thin-for-all-variants>"
)
```
+Optional: If _gym_ can't automatically detect the provisioning profiles to use, you can pass a mapping of bundle identifiers to provisioning profiles:
+
+```ruby
+export_options(
+ method: "app-store",
+ provisioningProfiles: {
+ "com.example.bundleid": "Provisioning Profile Name",
+ "com.example.bundleid2": "Provisioning Profile Name 2",
+ }
+)
+```
+
+**Note**: If you use [fastlane](https://fastlane.tools) with [match](https://fastlane.tools/match) you don't need to provide those values manually.
+
For the list of available options run `xcodebuild -help`.
## Setup code signing
- [More information on how to get started with codesigning](https://docs.fastlane.tools/codesigning/getting-started/)