Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,17 @@ SDK and be submitted to the TestFlight platform.
app.testflight.app_token = '<insert your APP token here>'
end

4. (Optional) You can also set up distribution lists, if needed.
4. Set the appropriate code signing certificate, provisioning profile and entitlements for ad hoc distribution.

# ...
app.testflight do
# ...
app.provisioning_profile = '</path/to/adhoc/distribution/profile.mobileprovision>'
app.codesign_certificate = 'iPhone Distribution: <name> (<random digits>)'
app.entitlements['get-task-allow'] = false
end

5. (Optional) You can also set up distribution lists, if needed.

Motion::Project::App.setup do |app|
# ...
Expand Down