I am trying to implement the Adjust SDK in both Android and iOS. In Android it is working fine, but the same code not working on iOS.
Following is my Adjust integration but if I console log status, I am getting status value as 0
I thought this is because of the Emulator issue, then did the build and tried it on real device but still getting the same issue. I am not sure what I am missing here
var adjustEvent = new AdjustEvent("xyzabc");
Adjust.trackEvent(adjustEvent);
Adjust.updateConversionValue(6);
Adjust.getAppTrackingAuthorizationStatus((status) => {
console.log("Authorization status = " + status);
});




