Post

Replies

Boosts

Views

Created

Unable to install addPlan in the eSIM device
Hi All, I am unable to install addplan in eSIM device. I am using below code but getting status as CTCellularPlanProvisioningAddPlanResultFail and also showing alert has Unable to complete data plan change. Kindly help me on fixing this issue. CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init];        provRequest.address = @"esimaddress"; [provisioning addPlanWith:provRequest completionHandler:^(CTCellularPlanProvisioningAddPlanResult result) {          switch (result) {            case CTCellularPlanProvisioningAddPlanResultUnknown:              NSLog(@"Provisioning Unknown");              break;            case CTCellularPlanProvisioningAddPlanResultFail:              NSLog(@"Provisioning Fail");              break;            case CTCellularPlanProvisioningAddPlanResultSuccess:              NSLog(@"Provisioning Success");              break;            default:              NSLog(@"Something went wrong, Please try again later");              break;          }        }]; Thanks in Advance
1
0
1.4k
Aug ’20
Unable to check device supports eSIM.
Hi All, I have enabled eSIM entitlements to check eSIM, but we are getting the status of eSIM supportsCellularPlan is always false. We are using the below code to check eSIM available or not: CTCellularPlanProvisioning *provisioning = [[CTCellularPlanProvisioning alloc] init];     BOOL supportseSIM = provisioning.supportsCellularPlan; Kindly let me know is there any other way to check eSIM availability.
3
0
2.2k
Jun ’20