I am using fabric Crashlytics to deployed beta app but not able to download app.
error:
The developer needs to add this device's UDID to the build.
I am able to upload build on fabric Crashlytics using Fastfile script.
Tried solutions :
- First send the invitation to become Beta tester and add devices then using device UDID's to add in Fastfile manually but its not working :
Fastfile :
lane :beta do
# build your iOS app
gym(
# scheme: "YourScheme",
export_method: "ad-hoc"
)
# upload to Beta by Crashlytics
crashlytics(
api_token: "*****************************************",
build_secret: "*****************************************"
)
register_devices(
devices: {
'ABC' => '*****************************************',
'BCD' => '*****************************************',
'XYZ' => '*****************************************'
}
)
end
- Added Devices in https://developer.apple.com/ Certificates, Identifiers & Profiles section.
- From Xcode deleted developer account and added again and also downloaded All Provisioning Profiles.
- Removed Beta tester and added again.
- After adding new Beta user or Devices new app uploaded again but same error The developer needs to add this device's UDID to the build.
But all solutions not working for me.