Skip to content

Commit

Permalink
Merge pull request #3119 from digitalfabrik/fix-metadata-delivery
Browse files Browse the repository at this point in the history
Fix fastlane metadata delivery
  • Loading branch information
steffenkleinle authored Feb 21, 2025
2 parents d3ad57f + d37a5e6 commit 2fe4b50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion native/android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ platform :android do
version_code: version_code,
version_name: version_name,
package_name: build_config['applicationId'],
metadata_path: "./android/fastlane/#{build_config_name}/metadata",
metadata_path: "./fastlane/#{build_config_name}/metadata",
track: track,
skip_upload_changelogs: false,
skip_upload_images: skip_images,
Expand Down
8 changes: 4 additions & 4 deletions native/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ platform :ios do
skip_metadata: false,
overwrite_screenshots: true,
skip_app_version_update: false,
metadata_path: "./ios/fastlane/#{build_config_name}/metadata",
screenshots_path: "./ios/fastlane/#{build_config_name}/screenshots",
metadata_path: "./fastlane/#{build_config_name}/metadata",
screenshots_path: "./fastlane/#{build_config_name}/screenshots",
precheck_include_in_app_purchases: false, # We do not have inapp purchases
submission_information: { add_id_info_uses_idfa: false } # https://firebase.google.com/docs/analytics/configure-data-collection?platform=ios
# https://support.google.com/firebase/answer/6318039?hl=en
Expand Down Expand Up @@ -188,8 +188,8 @@ platform :ios do
skip_screenshots: skip_screenshots,
overwrite_screenshots: true,
skip_binary_upload: true,
metadata_path: "./ios/fastlane/#{build_config_name}/metadata",
screenshots_path: "./ios/fastlane/#{build_config_name}/screenshots",
metadata_path: "./fastlane/#{build_config_name}/metadata",
screenshots_path: "./fastlane/#{build_config_name}/screenshots",
precheck_include_in_app_purchases: false, # We do not have inapp purchases
submission_information: { add_id_info_uses_idfa: false } # https://firebase.google.com/docs/analytics/configure-data-collection?platform=ios
# https://support.google.com/firebase/answer/6318039?hl=en
Expand Down

0 comments on commit 2fe4b50

Please sign in to comment.