I keep getting an error Cannot find app with <my_bundle_id> in the App Store although i have verified that it is indeed there , and i have used fastlane with actions like gym and match and pilot in which i passed the bundle_id and it didn't complain.
app_store_version = get_app_store_version_number(
bundle_id: 'my_bundle_id'
)
what is wrong ?
am using fastlane version 2.222.0
Note
<my_bundle_id> is a placeholder for the exact bunlde ID , so for example if my bundle ID is com.xyz, then this is what i pass as a value to the get_app_store_version_number action for the key bundle_id
i.e.
app_store_version = get_app_store_version_number(
bundle_id: 'com.xyz'
)