Hi Team,
If we release our app for Phase release after 2 days we have paused the app. What will happen if we not resume the app for more than 30 days?
Post
Replies
Boosts
Views
Activity
Hi Team,
If we release our app for Phase release after 2 days we have pause the app. What will happen if we not resume the app for more than 30 days?
Hi All,
I am sending http url in push notification it is not opening the app instead of that it is opening Appstore and also it is not happening all the time but most of the times it is navigating to Appstore.
Kindly suggest me on the app query.
Hi All,
After removing the apple-app-site-association file from server on click link it is opening app. How to resolve this issue. When user click on link it need to open in browser. Kindly help on this
Thanks in Advance.
Hi,
I am sending deeplink(Universal links) url in push notification. When i am clicking on Push Notification it is opening safari browser from there url is loading in safari browser. If my app is Kill state or background state on click notifications first it opens safari and then my app is opening. How to fix this problem when app is in active state, Please let me know
Hi,
In my application i need to read the eSIM EID(electronic Identification) value, Can anyone help me on this how to read the EID value in objective c or swift.
Thanks
In my application i need to fetch the EID number using objective C. Kindly help me on this
Hi AppleTeam,
We are using authkey(.p8 Certificate) for Push Notifications and Campaigns in our application. But from few months we are facing issues that impacting our Application. We are getting like this error (403 Forbidden: {"reason":"InvalidProviderToken"}). May i know the reason why it is happening and also kindly help me on this to fix this issue.
Thanks in Advance.
Hi All,
I am unable to install eSIM plan using addplan method in objective c kindly help me on this, I have used below code.
CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init];
provRequest.address = @"eSim Address";
[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;
}
}];
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
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.