Skip to content

Commit a18a808

Browse files
committed
Adjust documentation for app_clip_review_information
1 parent d24900a commit a18a808

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

deliver/lib/deliver/upload_app_clip_default_experience_metadata.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def upload_metadata(options)
7171
def load_from_filesystem(options)
7272
metadata_path = options[:app_clip_default_experience_metadata_path]
7373
return if options[:skip_metadata] || metadata_path.nil?
74-
74+
7575
# Load localised data
7676
ignore_validation = options[:ignore_language_directory_validation]
7777
Loader.language_folders(metadata_path, ignore_validation).each do |lang_folder|

fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb

+20
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,26 @@ app_review_information(
242242

243243
You can also provide these values by creating files in a `metadata/review_information/` directory. The file names must match the pattern `<key>.txt` (e.g. `first_name.txt`, `notes.txt` etc.). The contents of each file will be used as the value for the matching key. Values provided in the `Deliverfile` or `Fastfile` will be take priority over values from these files.
244244

245+
##### app_clip_review_information
246+
Review information on the app clips for the app review team. Available options: `invocation_urls`
247+
248+
249+
```ruby-skip-tests
250+
app_clip_review_information(
251+
invocation_urls: ["http://localhost.com"]
252+
)
253+
```
254+
255+
You can also provide these values by creating files in a `metadata/app_clip_review_information/` directory. The file names must match the pattern `<key>.txt` (e.g. `invocation_urls`). The contents of each file will be used as the value for the matching key. Values provided in the `Deliverfile` or `Fastfile` will be take priority over values from these files.
256+
257+
Example of the `invocation_urls.txt` file:
258+
259+
260+
```
261+
http://localhost.com/1, http://localhost.com/2
262+
```
263+
264+
245265
##### app_review_attachment_file
246266
You can provide additional information to the app review team as a file attachment. As of this writing, Apple supports following file attachment formats: .pdf, .doc, .docx, .rtf, .pages, .xls, .xlsx, .numbers, .zip, .rar, .plist, .crash, .jpg, .png, .mp4, or .avi.
247267

0 commit comments

Comments
 (0)