Question is pretty self explanatory, reason we're asking is, our bank account received an "ACH INTL" service charge for the first time, the month after we received first ACH from Apple. Most of our App Store earnings come from geos outside of where we bank.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
I have some library integration sample that looks like this:
if (@available(iOS 14, *)) {
[ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) {
[TenjinSDK connect];
}];
} else {
[TenjinSDK connect];
}
(It was written at a time pre-14 when Apple stated ATT would be required in 14.0) Now that ATT is going to be required in 14.5, would it meet Apple requirements to update the first line:
if (@available(iOS 14.5, *)) {
?