This commit is contained in:
corn
2026-06-07 22:59:32 +08:00
commit a62ff7379b
7171 changed files with 10015624 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// ADJLinkResolution.h
// Adjust
//
// Created by Pedro S. on 26.04.21.
// Copyright © 2021 adjust GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ADJLinkResolution : NSObject
+ (void)resolveLinkWithUrl:(nonnull NSURL *)url
resolveUrlSuffixArray:(nullable NSArray<NSString *> *)resolveUrlSuffixArray
callback:(nonnull void (^)(NSURL *_Nullable resolvedLink))callback;
@end