-
In my workflow
At first glance, I thought that I had a syntax error in my Here is my default_platform(:ios)
platform :ios do
desc "Deploy app with screenshots to App Store Connect"
lane :deployapp do |options|
deliver(
api_key_path: "./app_store_connect.json",
app_version: options[:versionName],
ipa: "../build/ios/ipa/mistikee.ipa",
submit_for_review: true,
skip_binary_upload: false,
skip_metadata: false,
skip_app_version_update: false,
skip_screenshots: false,
overwrite_screenshots: true,
metadata_path: "./fastlane/metadata",
screenshots_path: "./fastlane/screenshots",
precheck_include_in_app_purchases: false,
force: true,
submission_information: {
add_id_info_limits_tracking: true,
add_id_info_serves_ads: options[:estFree],
add_id_info_tracks_action: true,
add_id_info_tracks_install: true,
add_id_info_uses_idfa: true,
content_rights_has_rights: true,
content_rights_contains_third_party_content: true,
export_compliance_platform: "ios",
export_compliance_compliance_required: false,
export_compliance_encryption_updated: false,
export_compliance_app_type: nil,
export_compliance_uses_encryption: false,
export_compliance_is_exempt: false,
export_compliance_contains_third_party_cryptography: false,
export_compliance_contains_proprietary_cryptography: false,
export_compliance_available_on_french_store: true
}
)
end
end What did I miss? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
My bad, I forgot to set an argument for my lane. That being said, I still have the same error here: |
Beta Was this translation helpful? Give feedback.
-
OK so for the second error, I actually.... forgot to import an environment variable in my workflow. Silly me! :) |
Beta Was this translation helpful? Give feedback.
OK so for the second error, I actually.... forgot to import an environment variable in my workflow. Silly me! :)