ios - Remove devices from provisioning profile with Fastlane -
i'm using match
, register_devices
right devices in profiles.
when remove devices via apple developer fastlane tells me can't find provisioning profile anymore. have nuke , create again via fastlane.
is there better way? register_devices
throws out missing devices provisioning profile, when deleted them call or something?
any time delete device, provisioning profiles device become invalid.
if want programmatically, can use disable!
on device object disable device, e.g.:
device = device.find_by_udid "abcde-12345" device.disable!
but when via dev portal, invalidate provisioning profiles use device.
i find easier keep list of devices in source control , use match
, register_devices
. set happens automatically instead of doing hand , won't big pain.
Comments
Post a Comment