├── LICENSE ├── README.md ├── SAKSDK.podspec └── SAKSDK.xcframework ├── Info.plist ├── ios-arm64_armv7 └── SAKSDK.framework │ ├── Assets.car │ ├── Headers │ ├── SAKAdContainer.h │ ├── SAKAdRequestConfiguration.h │ ├── SAKAdRequestConfigurationBuilder.h │ ├── SAKAdRequestLocationConfiguration.h │ ├── SAKAdView.h │ ├── SAKAdViewController.h │ ├── SAKConfigurationGenderEnum.h │ ├── SAKError.h │ ├── SAKErrorCode.h │ ├── SAKInterstitial.h │ ├── SAKMobileAd.h │ ├── SAKRegisterRequestConfiguration.h │ ├── SAKRegisterRequestConfigurationBuilder.h │ ├── SAKRegisterSLCEnum.h │ ├── SAKRewardedAd.h │ └── SAKSDK.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── SAKSDK │ ├── ar.lproj │ └── SAKSDKStrings.strings │ ├── bn-BD.lproj │ └── SAKSDKStrings.strings │ ├── bn-IN.lproj │ └── SAKSDKStrings.strings │ ├── da.lproj │ └── SAKSDKStrings.strings │ ├── de.lproj │ └── SAKSDKStrings.strings │ ├── el.lproj │ └── SAKSDKStrings.strings │ ├── en-GB.lproj │ └── SAKSDKStrings.strings │ ├── en.lproj │ └── SAKSDKStrings.strings │ ├── es-AR.lproj │ └── SAKSDKStrings.strings │ ├── es-ES.lproj │ └── SAKSDKStrings.strings │ ├── es-MX.lproj │ └── SAKSDKStrings.strings │ ├── es.lproj │ └── SAKSDKStrings.strings │ ├── fi.lproj │ └── SAKSDKStrings.strings │ ├── fil-PH.lproj │ └── SAKSDKStrings.strings │ ├── fr.lproj │ └── SAKSDKStrings.strings │ ├── gu-IN.lproj │ └── SAKSDKStrings.strings │ ├── hi-IN.lproj │ └── SAKSDKStrings.strings │ ├── id.lproj │ └── SAKSDKStrings.strings │ ├── it.lproj │ └── SAKSDKStrings.strings │ ├── ja.lproj │ └── SAKSDKStrings.strings │ ├── kn-IN.lproj │ └── SAKSDKStrings.strings │ ├── ko.lproj │ └── SAKSDKStrings.strings │ ├── ml-IN.lproj │ └── SAKSDKStrings.strings │ ├── mr-IN.lproj │ └── SAKSDKStrings.strings │ ├── ms-MY.lproj │ └── SAKSDKStrings.strings │ ├── nb.lproj │ └── SAKSDKStrings.strings │ ├── nl.lproj │ └── SAKSDKStrings.strings │ ├── pa-IN.lproj │ └── SAKSDKStrings.strings │ ├── pl.lproj │ └── SAKSDKStrings.strings │ ├── pt-PT.lproj │ └── SAKSDKStrings.strings │ ├── pt.lproj │ └── SAKSDKStrings.strings │ ├── ro.lproj │ └── SAKSDKStrings.strings │ ├── ru.lproj │ └── SAKSDKStrings.strings │ ├── sv.lproj │ └── SAKSDKStrings.strings │ ├── ta-IN.lproj │ └── SAKSDKStrings.strings │ ├── te-IN.lproj │ └── SAKSDKStrings.strings │ ├── th-TH.lproj │ └── SAKSDKStrings.strings │ ├── tr.lproj │ └── SAKSDKStrings.strings │ ├── ur-PK.lproj │ └── SAKSDKStrings.strings │ ├── vi-VN.lproj │ └── SAKSDKStrings.strings │ ├── zh-Hans.lproj │ └── SAKSDKStrings.strings │ └── zh-Hant.lproj │ └── SAKSDKStrings.strings └── ios-i386_x86_64-simulator └── SAKSDK.framework ├── Assets.car ├── Headers ├── SAKAdContainer.h ├── SAKAdRequestConfiguration.h ├── SAKAdRequestConfigurationBuilder.h ├── SAKAdRequestLocationConfiguration.h ├── SAKAdView.h ├── SAKAdViewController.h ├── SAKConfigurationGenderEnum.h ├── SAKError.h ├── SAKErrorCode.h ├── SAKInterstitial.h ├── SAKMobileAd.h ├── SAKRegisterRequestConfiguration.h ├── SAKRegisterRequestConfigurationBuilder.h ├── SAKRegisterSLCEnum.h ├── SAKRewardedAd.h └── SAKSDK.h ├── Info.plist ├── Modules └── module.modulemap ├── SAKSDK ├── _CodeSignature └── CodeResources ├── ar.lproj └── SAKSDKStrings.strings ├── bn-BD.lproj └── SAKSDKStrings.strings ├── bn-IN.lproj └── SAKSDKStrings.strings ├── da.lproj └── SAKSDKStrings.strings ├── de.lproj └── SAKSDKStrings.strings ├── el.lproj └── SAKSDKStrings.strings ├── en-GB.lproj └── SAKSDKStrings.strings ├── en.lproj └── SAKSDKStrings.strings ├── es-AR.lproj └── SAKSDKStrings.strings ├── es-ES.lproj └── SAKSDKStrings.strings ├── es-MX.lproj └── SAKSDKStrings.strings ├── es.lproj └── SAKSDKStrings.strings ├── fi.lproj └── SAKSDKStrings.strings ├── fil-PH.lproj └── SAKSDKStrings.strings ├── fr.lproj └── SAKSDKStrings.strings ├── gu-IN.lproj └── SAKSDKStrings.strings ├── hi-IN.lproj └── SAKSDKStrings.strings ├── id.lproj └── SAKSDKStrings.strings ├── it.lproj └── SAKSDKStrings.strings ├── ja.lproj └── SAKSDKStrings.strings ├── kn-IN.lproj └── SAKSDKStrings.strings ├── ko.lproj └── SAKSDKStrings.strings ├── ml-IN.lproj └── SAKSDKStrings.strings ├── mr-IN.lproj └── SAKSDKStrings.strings ├── ms-MY.lproj └── SAKSDKStrings.strings ├── nb.lproj └── SAKSDKStrings.strings ├── nl.lproj └── SAKSDKStrings.strings ├── pa-IN.lproj └── SAKSDKStrings.strings ├── pl.lproj └── SAKSDKStrings.strings ├── pt-PT.lproj └── SAKSDKStrings.strings ├── pt.lproj └── SAKSDKStrings.strings ├── ro.lproj └── SAKSDKStrings.strings ├── ru.lproj └── SAKSDKStrings.strings ├── sv.lproj └── SAKSDKStrings.strings ├── ta-IN.lproj └── SAKSDKStrings.strings ├── te-IN.lproj └── SAKSDKStrings.strings ├── th-TH.lproj └── SAKSDKStrings.strings ├── tr.lproj └── SAKSDKStrings.strings ├── ur-PK.lproj └── SAKSDKStrings.strings ├── vi-VN.lproj └── SAKSDKStrings.strings ├── zh-Hans.lproj └── SAKSDKStrings.strings └── zh-Hant.lproj └── SAKSDKStrings.strings /LICENSE: -------------------------------------------------------------------------------- 1 | Any access or use of the included software, associated documentation, software 2 | code, or other materials made available by Snap Inc. (and its affiliates) is 3 | subject to the Snap Developer Terms found at: 4 | 5 | https://www.snap.com/terms/developer/ 6 | 7 | and the Snap Audience Network Terms found at: 8 | 9 | https://www.snap.com/terms/snap-audience-network 10 | 11 | If you do not wish to be a party to these terms or if you do not agree to all 12 | of these terms, then do not use or otherwise access any such software, 13 | documentation, software code, and other materials. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ad Kit SDK for iOS 2 | 3 | To learn more and sign up for access, visit [https://kit.snapchat.com/#ad-kit](https://kit.snapchat.com/#ad-kit) -------------------------------------------------------------------------------- /SAKSDK.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "SAKSDK" 3 | s.version = "2.0.0" 4 | s.summary = "Ad Kit by Snap Inc." 5 | s.description = <<-DESC 6 | Ad Kit by Snap Inc. allows developers a new way to monetize their apps by showing Snap Ads 7 | DESC 8 | s.homepage = "https://kit.snapchat.com" 9 | s.license = { :type => 'Copyright', :text => <<-LICENSE 10 | Any access or use of the included software, associated documentation, software 11 | code, or other materials made available by Snap Inc. (and its affiliates) is 12 | subject to your agreement and acceptance (by clicking the accept button) of the 13 | Snap Developer Terms of Service found at: 14 | 15 | https://www.snap.com/terms/developer/ 16 | 17 | and the Snap Audience Network Terms found at: 18 | 19 | https://storage.googleapis.com/snap_ads_docs/snap_audience_network_terms.pdf 20 | 21 | If you do not wish to be a party to these terms or if you do not agree to all 22 | of these terms, then do not use or otherwise access any such software, 23 | documentation, software code, and other materials. 24 | LICENSE 25 | } 26 | s.author = { "Snap Inc." => "ad-kit-support@snap.com" } 27 | s.source = { :git => "https://github.com/Snapchat/ad-kit-ios.git", :tag => "#{s.version}" } 28 | s.public_header_files = "SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/*.h" 29 | s.source_files = "SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/*.h" 30 | s.vendored_frameworks = "SAKSDK.xcframework" 31 | s.platform = :ios 32 | s.ios.deployment_target = '10.0' 33 | s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } 34 | s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } 35 | end -------------------------------------------------------------------------------- /SAKSDK.xcframework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AvailableLibraries 6 | 7 | 8 | LibraryIdentifier 9 | ios-arm64_armv7 10 | LibraryPath 11 | SAKSDK.framework 12 | SupportedArchitectures 13 | 14 | arm64 15 | armv7 16 | 17 | SupportedPlatform 18 | ios 19 | 20 | 21 | LibraryIdentifier 22 | ios-i386_x86_64-simulator 23 | LibraryPath 24 | SAKSDK.framework 25 | SupportedArchitectures 26 | 27 | i386 28 | x86_64 29 | 30 | SupportedPlatform 31 | ios 32 | SupportedPlatformVariant 33 | simulator 34 | 35 | 36 | CFBundlePackageType 37 | XFWK 38 | XCFrameworkFormatVersion 39 | 1.0 40 | 41 | 42 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Assets.car -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdContainer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdContainer.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdContainer; 13 | @class SAKAdRequestConfiguration; 14 | @class SAKAdViewController; 15 | 16 | @protocol SAKAdContainerDelegate 17 | 18 | /** Called when an ad has been loaded by adContainer and is ready to be displayed */ 19 | - (void)adContainerDidLoad:(SAKAdContainer *)adContainer; 20 | /** Called when there's been an error while downloading an ad */ 21 | - (void)adContainer:(SAKAdContainer *)ad didFailWithError:(NSError *)error; 22 | 23 | @end 24 | 25 | /** 26 | * An object that is used to load an ad. 27 | * Provides access to a view controller that displays an ad. 28 | */ 29 | API_AVAILABLE(ios(10.0)) 30 | @interface SAKAdContainer : NSObject 31 | 32 | /** Receiver's delegate */ 33 | @property (nonatomic, weak, readwrite, nullable) id delegate; 34 | /** The view controller to be used to display a loaded ad */ 35 | @property (nonatomic, readonly, nullable) SAKAdViewController *adViewController; 36 | /** Whether or not the ad is ready to be displayed */ 37 | @property (nonatomic, readonly, getter=isReady) BOOL ready; 38 | 39 | /** 40 | * Loads an ad if one hasn't already been loaded 41 | * @param configuration Optional ad request configuration 42 | */ 43 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 44 | 45 | @end 46 | 47 | NS_ASSUME_NONNULL_END 48 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdRequestConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "SAKAdRequestLocationConfiguration.h" 10 | 11 | API_AVAILABLE(ios(10.0)) 12 | @interface SAKAdRequestConfiguration : NSObject 13 | 14 | @property (nonatomic, readonly, copy, nullable) NSString *publisherSlotId; 15 | @property (nonatomic, readonly, copy, nullable) SAKAdRequestLocationConfiguration *location; 16 | 17 | - (instancetype)initWithPublisherSlotId:(nullable NSString *)publisherSlotId location:(nullable SAKAdRequestLocationConfiguration *)location; 18 | 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdRequestConfigurationBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestConfigurationBuilder.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | #import 8 | #import "SAKAdRequestLocationConfiguration.h" 9 | 10 | @class SAKAdRequestConfiguration; 11 | @class SAKAdRequestLocationConfiguration; 12 | 13 | API_AVAILABLE(ios(10.0)) 14 | @interface SAKAdRequestConfigurationBuilder : NSObject 15 | 16 | + (instancetype)adRequestConfiguration; 17 | 18 | + (instancetype)adRequestConfigurationFromExistingAdRequestConfiguration:(SAKAdRequestConfiguration *)existingAdRequestConfiguration; 19 | 20 | - (SAKAdRequestConfiguration *)build; 21 | 22 | - (instancetype)withPublisherSlotId:(nullable NSString *)publisherSlotId; 23 | 24 | - (instancetype)withLocation:(nullable SAKAdRequestLocationConfiguration *)location; 25 | 26 | @end 27 | 28 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdRequestLocationConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestLocationConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | API_AVAILABLE(ios(10.0)) 11 | @interface SAKAdRequestLocationConfiguration : NSObject 12 | 13 | @property (nonatomic, readonly) double latitude; 14 | @property (nonatomic, readonly) double longtitude; 15 | @property (nonatomic, readonly) NSInteger accuracyInMeters; 16 | @property (nonatomic, readonly) NSTimeInterval locationCapturedTimestampInMillis; 17 | 18 | - (instancetype)initWithLatitude:(double)latitude longtitude:(double)longtitude accuracyInMeters:(NSInteger)accuracyInMeters locationCapturedTimestampInMillis:(NSTimeInterval)locationCapturedTimestampInMillis; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdView.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdView; 13 | @class SAKAdRequestConfiguration; 14 | 15 | typedef NS_ENUM(NSUInteger, SAKAdViewFormat) { 16 | // 320x50 17 | SAKAdViewFormatBanner, 18 | // 300x250 19 | SAKAdViewFormatMediumRectangle, 20 | }; 21 | 22 | @protocol SAKAdViewDelegate 23 | 24 | @property (nonatomic, readonly) UIViewController *rootViewController; 25 | 26 | - (void)adViewDidLoad:(SAKAdView *)adView; 27 | 28 | - (void)adView:(SAKAdView *)adView didFailWithError:(NSError *)error; 29 | 30 | - (void)adViewDidClick:(SAKAdView *)adView; 31 | 32 | - (void)adViewDidTrackImpression:(SAKAdView *)adView; 33 | 34 | @end 35 | 36 | API_AVAILABLE(ios(10.0)) 37 | @interface SAKAdView : UIView 38 | 39 | @property (nonatomic, weak, nullable) id delegate; 40 | @property (nonatomic, weak, nullable) 41 | UIViewController *rootViewController DEPRECATED_MSG_ATTRIBUTE("Use rootViewController delegate property instead"); 42 | 43 | - (instancetype)initWithFormat:(SAKAdViewFormat)adViewFormat; 44 | 45 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 46 | 47 | /// Load ad from a bid payload from a server side bid 48 | /// @param bidPayload ad payload to be rendered by the receiver 49 | /// @param publisherSlotId optional slot ID 50 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 51 | 52 | - (instancetype)init NS_UNAVAILABLE; 53 | - (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE; 54 | - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE; 55 | 56 | @end 57 | 58 | NS_ASSUME_NONNULL_END 59 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKAdViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdViewController.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdViewController; 13 | 14 | @protocol SAKAdViewControllerDelegate 15 | 16 | /** 17 | * Invoked when receiver starts displaying the ad. 18 | * Receiver must not be dismissed until `adViewControllerAllowAdDismissal:` is called. 19 | */ 20 | - (void)adViewControllerPreventAdDismissal:(SAKAdViewController *)ad; 21 | 22 | /** Invoked after receiver has finished displaying the ad. It's ok to dismiss the ad after you receive this callback. */ 23 | - (void)adViewControllerAllowAdDismissal:(SAKAdViewController *)ad; 24 | 25 | /** Invoked after receiver has fired an ad track. */ 26 | - (void)adViewControllerDidTrackImpression:(SAKAdViewController *)ad; 27 | 28 | /** Invoked when receiver has encountered an error. */ 29 | - (void)adViewController:(SAKAdViewController *)ad didEncounterAdError:(NSError *)error; 30 | 31 | @end 32 | 33 | /** A UIViewController subclass that displays an ad */ 34 | API_AVAILABLE(ios(10.0)) 35 | @interface SAKAdViewController : UIViewController 36 | 37 | @property (nonatomic, weak, nullable) id delegate; 38 | 39 | /** 40 | * An array of "friendly" obstructions (layers rendered on top of the ad displayed by the receiver). 41 | * These layers won't be taken into account while determining whether the ad is 100% visible on screen. 42 | */ 43 | @property (nonatomic, nullable) NSArray *friendlyObstructions; 44 | 45 | + (instancetype) new NS_UNAVAILABLE; 46 | - (instancetype)init NS_UNAVAILABLE; 47 | - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil 48 | bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE; 49 | - (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE; 50 | 51 | - (void)playAd; 52 | - (void)pauseAd; 53 | 54 | @end 55 | 56 | NS_ASSUME_NONNULL_END 57 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKConfigurationGenderEnum.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKConfigurationGenderEnum.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAKConfigurationGenderType) { 11 | SAKConfigurationGenderTypeUnknown = 0, 12 | SAKConfigurationGenderTypeMale, 13 | SAKConfigurationGenderTypeFemale, 14 | SAKConfigurationGenderTypeOther 15 | }; 16 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKError.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKError.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | extern NSString *const SAKErrorDomain; 13 | 14 | NS_ASSUME_NONNULL_END 15 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKErrorCode.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKErrorCode.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAKErrorCode) { 11 | /* 12 | * Generic error 13 | */ 14 | SAKErrorGeneric = 0, 15 | /* 16 | * Network error 17 | */ 18 | SAKErrorNetworkError = 1, 19 | /* 20 | * Cannot request ad due user not eligible 21 | */ 22 | SAKErrorNotEligible = 2, 23 | /* 24 | * Cannot parse response from network request 25 | */ 26 | SAKErrorFailedToParse = 3, 27 | /* 28 | * Cannot request ad due to SDK not ready 29 | */ 30 | SAKErrorSDKNotInitialized = 4, 31 | /* 32 | * No ad returned from server 33 | */ 34 | SAKErrorNoAdAvailable = 5, 35 | /* 36 | * Cannot find creative endpoint to download ad media 37 | */ 38 | SAKErrorCodeNoCreativeEndpoint = 6, 39 | /* 40 | * Media download error 41 | */ 42 | SAKErrorCodeMediaDownloadError = 7, 43 | /* 44 | * Failed to Register 45 | */ 46 | SAKErrorFailedToRegister = 8, 47 | /* 48 | * Ads are disabled 49 | */ 50 | SAKErrorAdsDisabled = 9, 51 | /* 52 | * Ad not visible 53 | */ 54 | SAKErrorAdNotVisible = 10, 55 | }; 56 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKInterstitial.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKInterstitial.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @class SAKInterstitial; 14 | @class SAKAdRequestConfiguration; 15 | 16 | @protocol SAKInterstitialDelegate 17 | 18 | - (void)interstitialDidLoad:(SAKInterstitial *)ad; 19 | 20 | - (void)interstitial:(SAKInterstitial *)ad didFailWithError:(NSError *)error; 21 | 22 | - (void)interstitialDidExpire:(SAKInterstitial *)ad; 23 | 24 | - (void)interstitialWillAppear:(SAKInterstitial *)ad; 25 | 26 | - (void)interstitialDidAppear:(SAKInterstitial *)ad; 27 | 28 | - (void)interstitialWillDisappear:(SAKInterstitial *)ad; 29 | 30 | - (void)interstitialDidDisappear:(SAKInterstitial *)ad; 31 | 32 | - (void)interstitialDidShowAttachment:(SAKInterstitial *)ad; 33 | 34 | - (void)interstitialDidTrackImpression:(SAKInterstitial *)ad; 35 | 36 | @end 37 | 38 | API_AVAILABLE(ios(10.0)) 39 | @interface SAKInterstitial : NSObject 40 | 41 | @property (nonatomic, weak, readwrite, nullable) id delegate; 42 | @property (nonatomic, assign, readonly) BOOL isReady; 43 | 44 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 45 | 46 | /// Load ad from a bid payload from a server side bid 47 | /// @param bidPayload ad payload to be rendered by the receiver 48 | /// @param publisherSlotId optional slot ID 49 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 50 | 51 | /// Presents the Interstitial 52 | /// @param rootViewController view controller to present from 53 | /// @param dismissTransition frame (in screen coordinates) of the rectangle from which the interstitial transition 54 | /// begins and to which it returns. 55 | - (void)presentFromRootViewController:(UIViewController *)rootViewController 56 | dismissTransition:(CGRect)dismissTransition; 57 | 58 | @end 59 | 60 | NS_ASSUME_NONNULL_END 61 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKMobileAd.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKMobileAd.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKRegisterRequestConfiguration; 13 | 14 | typedef void (^SAKInitializationCompletionHandler)(BOOL success, NSError *_Nullable error); 15 | 16 | API_AVAILABLE(ios(10.0)) 17 | @interface SAKMobileAd : NSObject 18 | 19 | + (SAKMobileAd *)shared; 20 | 21 | @property (nonatomic, assign, readonly) BOOL initialized; 22 | @property (nonatomic, assign) BOOL debug; 23 | @property (nonatomic, assign) BOOL silentModeAudioEnabled; 24 | 25 | - (void)startWithConfiguration:(SAKRegisterRequestConfiguration *)configuration 26 | completion:(nullable SAKInitializationCompletionHandler)completion; 27 | 28 | - (NSString *)sdkVersion; 29 | 30 | - (nullable NSString *)biddingToken; 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKRegisterRequestConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterRequestConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "SAKConfigurationGenderEnum.h" 10 | 11 | /** 12 | * AdKit configuration 13 | */ 14 | API_AVAILABLE(ios(10.0)) 15 | @interface SAKRegisterRequestConfiguration : NSObject 16 | 17 | /** 18 | * App ID generated via Snap Kit portal. Required 19 | */ 20 | @property (nonatomic, readonly, copy, nonnull) NSString *snapKitAppId; 21 | /** 22 | * Phone Number of the user 23 | */ 24 | @property (nonatomic, readonly, copy, nullable) NSString *phoneNumber; 25 | /** 26 | * Email of the user 27 | */ 28 | @property (nonatomic, readonly, copy, nullable) NSString *emailAddress; 29 | /** 30 | * Age of the user 31 | */ 32 | @property (nonatomic, readonly) NSInteger age; 33 | /** 34 | * Snapchat Lifestyle Categories targeting options that fit the user 35 | */ 36 | @property (nonatomic, readonly, copy, nullable) NSArray *categories; 37 | /** 38 | * Free form strings that categorize or describe the user 39 | */ 40 | @property (nonatomic, readonly, copy, nullable) NSArray *keywords; 41 | /** 42 | * Gender of the user 43 | */ 44 | @property (nonatomic, readonly) SAKConfigurationGenderType gender; 45 | /** 46 | * Whether or not crash reporting should be disabled 47 | */ 48 | @property (nonatomic, readonly) BOOL crashReportingDisabled; 49 | /** 50 | * Whether or not AdKit should function in test mode 51 | */ 52 | @property (nonatomic, readonly) BOOL testModeEnabled; 53 | 54 | - (instancetype)initWithSnapKitAppId:(nonnull NSString *)snapKitAppId phoneNumber:(nullable NSString *)phoneNumber emailAddress:(nullable NSString *)emailAddress age:(NSInteger)age categories:(nullable NSArray *)categories keywords:(nullable NSArray *)keywords gender:(SAKConfigurationGenderType)gender crashReportingDisabled:(BOOL)crashReportingDisabled testModeEnabled:(BOOL)testModeEnabled; 55 | 56 | @end 57 | 58 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKRegisterRequestConfigurationBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterRequestConfigurationBuilder.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | #import 8 | #import "SAKConfigurationGenderEnum.h" 9 | 10 | @class SAKRegisterRequestConfiguration; 11 | 12 | API_AVAILABLE(ios(10.0)) 13 | @interface SAKRegisterRequestConfigurationBuilder : NSObject 14 | 15 | + (instancetype)registerRequestConfiguration; 16 | 17 | + (instancetype)registerRequestConfigurationFromExistingRegisterRequestConfiguration:(SAKRegisterRequestConfiguration *)existingRegisterRequestConfiguration; 18 | 19 | - (SAKRegisterRequestConfiguration *)build; 20 | 21 | - (instancetype)withSnapKitAppId:(nonnull NSString *)snapKitAppId; 22 | 23 | - (instancetype)withPhoneNumber:(nullable NSString *)phoneNumber; 24 | 25 | - (instancetype)withEmailAddress:(nullable NSString *)emailAddress; 26 | 27 | - (instancetype)withAge:(NSInteger)age; 28 | 29 | - (instancetype)withCategories:(nullable NSArray *)categories; 30 | 31 | - (instancetype)withKeywords:(nullable NSArray *)keywords; 32 | 33 | - (instancetype)withGender:(SAKConfigurationGenderType)gender; 34 | 35 | - (instancetype)withCrashReportingDisabled:(BOOL)crashReportingDisabled; 36 | 37 | - (instancetype)withTestModeEnabled:(BOOL)testModeEnabled; 38 | 39 | @end 40 | 41 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKRegisterSLCEnum.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterSLCEnum.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAK_SLC_Type) { 11 | SAK_SLC_UNKNOWN = 0, 12 | SAK_SLC_ADVENTURE_SEEKERS, 13 | SAK_SLC_ARTS_CULTURE_MAVENS, 14 | SAK_SLC_AUTOMOTIVE_ENTHUSIASTS, 15 | SAK_SLC_BEACHGOERS_SURFERS, 16 | SAK_SLC_BEAUTY_MAVENS, 17 | SAK_SLC_BOOKWORMS_AVID_READERS, 18 | SAK_SLC_CLUBBERS_PARTY_PEOPLE, 19 | SAK_SLC_COLLEGIATES, 20 | SAK_SLC_COMICS_ANIMATION_FANS, 21 | SAK_SLC_DO_IT_YOURSELFERS, 22 | SAK_SLC_FASHION_STYLE_GURUS, 23 | SAK_SLC_FILM_TV_FANS, 24 | SAK_SLC_ACTION_THRILLER_GENRE_FANS, 25 | SAK_SLC_COMEDY_FANS, 26 | SAK_SLC_CORDCUTTERS, 27 | SAK_SLC_DRAMA_GENRE_FANS, 28 | SAK_SLC_FAMILY_GENRE_FANS, 29 | SAK_SLC_HORROR_GENRE_FANS, 30 | SAK_SLC_MOVIE_THEATER_GOERS, 31 | SAK_SLC_REALITY_TV_FANS, 32 | SAK_SLC_ROMANCE_ROM_COM_FANS, 33 | SAK_SLC_SCI_FI_FANTASY_FANS, 34 | SAK_SLC_SUPERHERO_FILM_FANS, 35 | SAK_SLC_FITNESS_ENTHUSIASTS, 36 | SAK_SLC_CYCLING_ENTHUSIASTS, 37 | SAK_SLC_RUNNING_ENTHUSIASTS, 38 | SAK_SLC_YOGA_ENTHUSIASTS, 39 | SAK_SLC_FOODIES, 40 | SAK_SLC_CANDY_SWEETS_LOVERS, 41 | SAK_SLC_COOKING_ENTHUSIASTS, 42 | SAK_SLC_FAST_FOOD_JUNKIES, 43 | SAK_SLC_VEGANS_ORGANIC_FOODIES, 44 | SAK_SLC_GAMERS, 45 | SAK_SLC_CASUAL_MOBILE_GAMERS, 46 | SAK_SLC_CONSOLE_PC_GAMERS, 47 | SAK_SLC_GREEN_LIVING_ENTHUSIASTS, 48 | SAK_SLC_HIPSTERS_TRENDSETTERS, 49 | SAK_SLC_HOME_DECORISTAS, 50 | SAK_SLC_INVESTORS_ENTREPRENEURS, 51 | SAK_SLC_MATH_SCIENCE_ENTHUSIASTS, 52 | SAK_SLC_MENS_LIFESTYLE, 53 | SAK_SLC_SHARP_DRESSED_MEN, 54 | SAK_SLC_MUSIC_FANS, 55 | SAK_SLC_CONCERT_FESTIVAL_GOERS, 56 | SAK_SLC_COUNTRY_MUSIC_FANS, 57 | SAK_SLC_DANCE_ELECTRONIC_MUSIC_FANS, 58 | SAK_SLC_INDIE_ALTERNATIVE_MUSIC_FANS, 59 | SAK_SLC_POP_MUSIC_FANS, 60 | SAK_SLC_PUNK_METAL_FANS, 61 | SAK_SLC_ROCK_MUSIC_FANS, 62 | SAK_SLC_URBAN_HIP_HOP_MUSIC_FANS, 63 | SAK_SLC_NEWS_WATCHERS, 64 | SAK_SLC_BUSINESS_NEWS_WATCHERS, 65 | SAK_SLC_CELEBRITY_NEWS_WATCHERS, 66 | SAK_SLC_POLITICAL_NEWS_WATCHERS, 67 | SAK_SLC_OUTDOOR_NATURE_ENTHUSIASTS, 68 | SAK_SLC_PARENTS_FAMILY_FOCUSED, 69 | SAK_SLC_PET_ANIMAL_LOVERS, 70 | SAK_SLC_PHILANTHROPISTS, 71 | SAK_SLC_PHOTOGRAPHERS, 72 | SAK_SLC_SHOPPERS, 73 | SAK_SLC_BIG_BOX_SHOPPERS, 74 | SAK_SLC_DEPARTMENT_STORE_SHOPPERS, 75 | SAK_SLC_LUXURY_SHOPPERS, 76 | SAK_SLC_ONLINE_SHOPPERS, 77 | SAK_SLC_TOY_SHOPPERS, 78 | SAK_SLC_SPORTS_FANS, 79 | SAK_SLC_COLLEGE_BASKETBALL_FANS, 80 | SAK_SLC_AMERICAN_FOOTBALL_FANS, 81 | SAK_SLC_BASEBALL_FANS, 82 | SAK_SLC_BASKETBALL_FANS, 83 | SAK_SLC_COLLEGE_FOOTBALL_FANS, 84 | SAK_SLC_FIGHT_WRESTLING_FANS, 85 | SAK_SLC_GOLFERS, 86 | SAK_SLC_HOCKEY_FANS, 87 | SAK_SLC_MOTOR_SPORTS_FANS, 88 | SAK_SLC_OLYMPICS_ENTHUSIASTS, 89 | SAK_SLC_SNOW_SPORT_ENTHUSIASTS, 90 | SAK_SLC_SOCCER_ENTHUSIASTS, 91 | SAK_SLC_STREET_SPORT_ENTHUSIASTS, 92 | SAK_SLC_TENNIS_RACQUET_ENTHUSIASTS, 93 | SAK_SLC_WATER_SPORT_ENTHUSIASTS, 94 | SAK_SLC_TECHIES_GADGET_FANS, 95 | SAK_SLC_TRAVEL_ENTHUSIASTS, 96 | SAK_SLC_BUSINESS_TRAVELERS, 97 | SAK_SLC_FAMILY_TRAVELERS, 98 | SAK_SLC_FREQUENT_TRAVELERS, 99 | SAK_SLC_WOMENS_LIFESTYLE, 100 | SAK_SLC_AUTOMOTIVE_SHOPPERS, 101 | SAK_SLC_HIGH_SCHOOLERS, 102 | SAK_SLC_WELLNESS_HEALTHY_LIFESTYLE, 103 | SAK_SLC_CLASSICAL_OPERA_FANS, 104 | SAK_SLC_JAZZ_BLUES_FANS, 105 | SAK_SLC_LATIN_MUSIC_FANS, 106 | SAK_SLC_SOUL_RNB_FANS, 107 | SAK_SLC_WORLD_MUSIC_FANS, 108 | SAK_SLC_CRICKET_FANS, 109 | SAK_SLC_CRIME_MYSTERY_GENRE_FANS, 110 | SAK_SLC_INDIE_FOREIGN_FILM_FANS, 111 | SAK_SLC_TALENT_COMPETITION_SHOW_FANS, 112 | SAK_SLC_TALK_SHOW_FANS, 113 | SAK_SLC_TEEN_YOUNG_ADULT_GENRE_FANS, 114 | SAK_SLC_BURGER_LOVERS, 115 | SAK_SLC_COFFEE_LOVERS, 116 | SAK_SLC_PIZZA_LOVERS, 117 | SAK_SLC_SHOPPING_MALL_SHOPPERS, 118 | SAK_SLC_CASINO_VISITORS, 119 | SAK_SLC_THEME_PARK_VISITORS, 120 | SAK_SLC_SNEAKERHEADS, 121 | SAK_SLC_ENERGY_DRINK_CONSUMERS, 122 | SAK_SLC_SOFT_DRINK_CONSUMERS, 123 | SAK_SLC_SPORTS_DRINK_CONSUMERS, 124 | SAK_SLC_SOCIAL_DRINKERS, 125 | SAK_SLC_BEER_DRINKERS, 126 | SAK_SLC_WINE_ENTHUSIASTS, 127 | SAK_SLC_LIQUOR_SPIRITS_DRINKERS, 128 | SAK_SLC_RIDESHARE_RIDERS, 129 | SAK_SLC_DISCOUNT_THRIFTY_SHOPPERS, 130 | SAK_SLC_FOOD_DELIVERY_DINERS, 131 | SAK_SLC_DATING_ROMANCE_SEEKERS, 132 | SAK_SLC_FUN_TRIVIA_QUIZ_FANATICS, 133 | SAK_SLC_MEME_WATCHERS, 134 | SAK_SLC_CHAT_FICTION_ENTHUSIASTS, 135 | SAK_SLC_ADVOCATES_ACTIVISTS, 136 | SAK_SLC_FANTASY_SPORTS_FANS, 137 | SAK_SLC_NEW_PHONE_SEEKERS, 138 | SAK_SLC_ASTROLOGY_HOROSCOPE_FANS, 139 | SAK_SLC_MONEY_MINDERS, 140 | SAK_SLC_TATTOO_ENTHUSIASTS, 141 | SAK_SLC_AMERICAN_CUISINE_LOVERS, 142 | SAK_SLC_BBQ_LOVERS, 143 | SAK_SLC_CASUAL_DINING_LOVERS, 144 | SAK_SLC_CHINESE_CUISINE_LOVERS, 145 | SAK_SLC_DELI_DINER_LOVERS, 146 | SAK_SLC_DONUT_LOVERS, 147 | SAK_SLC_FRENCH_CUISINE_LOVERS, 148 | SAK_SLC_ICE_CREAM_LOVERS, 149 | SAK_SLC_INDIAN_CUISINE_LOVERS, 150 | SAK_SLC_ITALIAN_CUISINE_LOVERS, 151 | SAK_SLC_JAPANESE_CUISINE_LOVERS, 152 | SAK_SLC_JUICE_SMOOTHIE_LOVERS, 153 | SAK_SLC_KOREAN_CUISINE_LOVERS, 154 | SAK_SLC_MEXICAN_CUISINE_LOVERS, 155 | SAK_SLC_MIDDLE_EASTERN_CUISINE_LOVERS, 156 | SAK_SLC_SEAFOOD_LOVERS, 157 | SAK_SLC_STEAKHOUSE_LOVERS, 158 | SAK_SLC_THAI_CUISINE_LOVERS, 159 | SAK_SLC_ACTION_GAMERS, 160 | SAK_SLC_HUMOR_FANS, 161 | SAK_SLC_ESPORTS_ENTHUSIASTS, 162 | SAK_SLC_MUSIC_GAMERS, 163 | SAK_SLC_PUZZLE_GAMERS, 164 | SAK_SLC_RACING_GAMERS, 165 | SAK_SLC_ROLE_PLAYING_GAMERS, 166 | SAK_SLC_SHOOTER_GAME_ENTHUSIASTS, 167 | SAK_SLC_SPORTS_GAMERS, 168 | SAK_SLC_STRATEGY_GAMERS, 169 | SAK_SLC_TRIVIA_GAMERS, 170 | SAK_SLC_CASUAL_APPAREL_SHOPPERS, 171 | SAK_SLC_CASUAL_FOOTWEAR_SHOPPERS, 172 | SAK_SLC_CONSUMER_TECH_SHOPPERS, 173 | SAK_SLC_COSMETICS_SHOPPERS, 174 | SAK_SLC_HAIRCARE_SHOPPERS, 175 | SAK_SLC_HEADWEAR_SHOPPERS, 176 | SAK_SLC_HOME_FURNITURE_SHOPPERS, 177 | SAK_SLC_JEWELRY_WATCH_SHOPPERS, 178 | SAK_SLC_MENS_FASHION_SHOPPERS, 179 | SAK_SLC_MENS_GROOMING_SHOPPERS, 180 | SAK_SLC_NAIL_CARE_SHOPPERS, 181 | SAK_SLC_ONLINE_GROCERY_MEAL_KIT_SHOPPERS, 182 | SAK_SLC_ORAL_CARE_SHOPPERS, 183 | SAK_SLC_PERSONAL_CARE_PRODUCT_SHOPPERS, 184 | SAK_SLC_PRESCRIPTION_EYEWEAR_SHOPPERS, 185 | SAK_SLC_SPA_BEAUTY_TREATMENT_SHOPPERS, 186 | SAK_SLC_SPORT_LEISURE_APPAREL_SHOPPERS, 187 | SAK_SLC_WOMENS_FASHION_SHOPPERS, 188 | SAK_SLC_YOUTH_APPAREL_SHOPPERS, 189 | SAK_SLC_CAT_LOVERS, 190 | SAK_SLC_DOG_LOVERS, 191 | }; 192 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKRewardedAd.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRewardedAd.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | @class SAKRewardedAd; 12 | @class SAKAdRequestConfiguration; 13 | 14 | NS_ASSUME_NONNULL_BEGIN 15 | 16 | @protocol SAKRewardedAdDelegate 17 | 18 | - (void)rewardedAdDidLoad:(SAKRewardedAd *)ad; 19 | 20 | - (void)rewardedAd:(SAKRewardedAd *)ad didFailWithError:(NSError *)error; 21 | 22 | - (void)rewardedAdDidExpire:(SAKRewardedAd *)ad; 23 | 24 | - (void)rewardedAdWillAppear:(SAKRewardedAd *)ad; 25 | 26 | - (void)rewardedAdDidAppear:(SAKRewardedAd *)ad; 27 | 28 | - (void)rewardedAdWillDisappear:(SAKRewardedAd *)ad; 29 | 30 | - (void)rewardedAdDidDisappear:(SAKRewardedAd *)ad; 31 | 32 | - (void)rewardedAdDidShowAttachment:(SAKRewardedAd *)ad; 33 | 34 | - (void)rewardedAdDidEarnReward:(SAKRewardedAd *)ad; 35 | 36 | @end 37 | 38 | API_AVAILABLE(ios(10.0)) 39 | @interface SAKRewardedAd : NSObject 40 | 41 | @property (nonatomic, weak, readwrite, nullable) id delegate; 42 | @property (nonatomic, assign, readonly) BOOL isReady; 43 | 44 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 45 | 46 | /// Load ad from a bid payload from a server side bid 47 | /// @param bidPayload ad payload to be rendered by the receiver 48 | /// @param publisherSlotId optional slot ID 49 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 50 | 51 | /// Presents the Rewarded Ad 52 | /// @param rootViewController view controller to present from 53 | /// @param dismissTransition frame (in screen coordinates) of the rectangle from which the rewarded ad transition begins 54 | /// and to which it returns. 55 | - (void)presentFromRootViewController:(UIViewController *)rootViewController 56 | dismissTransition:(CGRect)dismissTransition; 57 | 58 | @end 59 | 60 | NS_ASSUME_NONNULL_END 61 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Headers/SAKSDK.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import 4 | #import 5 | #import 6 | #import 7 | #import 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Info.plist -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SAKSDK { 2 | umbrella header "SAKSDK.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/SAKSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/SAKSDK -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ar.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ar.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/bn-BD.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/bn-BD.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/bn-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/bn-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/da.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/da.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/de.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/de.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/el.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/el.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/en-GB.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/en-GB.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/en.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/en.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-AR.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-AR.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-ES.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-ES.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-MX.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es-MX.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/es.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fi.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fi.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fil-PH.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fil-PH.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fr.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/fr.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/gu-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/gu-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/hi-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/hi-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/id.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/id.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/it.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/it.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ja.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ja.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/kn-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/kn-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ko.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ko.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ml-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ml-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/mr-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/mr-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ms-MY.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ms-MY.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/nb.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/nb.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/nl.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/nl.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pa-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pa-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pl.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pl.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pt-PT.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pt-PT.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pt.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/pt.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ro.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ro.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ru.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ru.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/sv.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/sv.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ta-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ta-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/te-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/te-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/th-TH.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/th-TH.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/tr.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/tr.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ur-PK.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/ur-PK.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/vi-VN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/vi-VN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/zh-Hans.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/zh-Hans.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/zh-Hant.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-arm64_armv7/SAKSDK.framework/zh-Hant.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Assets.car -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdContainer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdContainer.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdContainer; 13 | @class SAKAdRequestConfiguration; 14 | @class SAKAdViewController; 15 | 16 | @protocol SAKAdContainerDelegate 17 | 18 | /** Called when an ad has been loaded by adContainer and is ready to be displayed */ 19 | - (void)adContainerDidLoad:(SAKAdContainer *)adContainer; 20 | /** Called when there's been an error while downloading an ad */ 21 | - (void)adContainer:(SAKAdContainer *)ad didFailWithError:(NSError *)error; 22 | 23 | @end 24 | 25 | /** 26 | * An object that is used to load an ad. 27 | * Provides access to a view controller that displays an ad. 28 | */ 29 | API_AVAILABLE(ios(10.0)) 30 | @interface SAKAdContainer : NSObject 31 | 32 | /** Receiver's delegate */ 33 | @property (nonatomic, weak, readwrite, nullable) id delegate; 34 | /** The view controller to be used to display a loaded ad */ 35 | @property (nonatomic, readonly, nullable) SAKAdViewController *adViewController; 36 | /** Whether or not the ad is ready to be displayed */ 37 | @property (nonatomic, readonly, getter=isReady) BOOL ready; 38 | 39 | /** 40 | * Loads an ad if one hasn't already been loaded 41 | * @param configuration Optional ad request configuration 42 | */ 43 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 44 | 45 | @end 46 | 47 | NS_ASSUME_NONNULL_END 48 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdRequestConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "SAKAdRequestLocationConfiguration.h" 10 | 11 | API_AVAILABLE(ios(10.0)) 12 | @interface SAKAdRequestConfiguration : NSObject 13 | 14 | @property (nonatomic, readonly, copy, nullable) NSString *publisherSlotId; 15 | @property (nonatomic, readonly, copy, nullable) SAKAdRequestLocationConfiguration *location; 16 | 17 | - (instancetype)initWithPublisherSlotId:(nullable NSString *)publisherSlotId location:(nullable SAKAdRequestLocationConfiguration *)location; 18 | 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdRequestConfigurationBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestConfigurationBuilder.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | #import 8 | #import "SAKAdRequestLocationConfiguration.h" 9 | 10 | @class SAKAdRequestConfiguration; 11 | @class SAKAdRequestLocationConfiguration; 12 | 13 | API_AVAILABLE(ios(10.0)) 14 | @interface SAKAdRequestConfigurationBuilder : NSObject 15 | 16 | + (instancetype)adRequestConfiguration; 17 | 18 | + (instancetype)adRequestConfigurationFromExistingAdRequestConfiguration:(SAKAdRequestConfiguration *)existingAdRequestConfiguration; 19 | 20 | - (SAKAdRequestConfiguration *)build; 21 | 22 | - (instancetype)withPublisherSlotId:(nullable NSString *)publisherSlotId; 23 | 24 | - (instancetype)withLocation:(nullable SAKAdRequestLocationConfiguration *)location; 25 | 26 | @end 27 | 28 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdRequestLocationConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdRequestLocationConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | API_AVAILABLE(ios(10.0)) 11 | @interface SAKAdRequestLocationConfiguration : NSObject 12 | 13 | @property (nonatomic, readonly) double latitude; 14 | @property (nonatomic, readonly) double longtitude; 15 | @property (nonatomic, readonly) NSInteger accuracyInMeters; 16 | @property (nonatomic, readonly) NSTimeInterval locationCapturedTimestampInMillis; 17 | 18 | - (instancetype)initWithLatitude:(double)latitude longtitude:(double)longtitude accuracyInMeters:(NSInteger)accuracyInMeters locationCapturedTimestampInMillis:(NSTimeInterval)locationCapturedTimestampInMillis; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdView.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdView; 13 | @class SAKAdRequestConfiguration; 14 | 15 | typedef NS_ENUM(NSUInteger, SAKAdViewFormat) { 16 | // 320x50 17 | SAKAdViewFormatBanner, 18 | // 300x250 19 | SAKAdViewFormatMediumRectangle, 20 | }; 21 | 22 | @protocol SAKAdViewDelegate 23 | 24 | @property (nonatomic, readonly) UIViewController *rootViewController; 25 | 26 | - (void)adViewDidLoad:(SAKAdView *)adView; 27 | 28 | - (void)adView:(SAKAdView *)adView didFailWithError:(NSError *)error; 29 | 30 | - (void)adViewDidClick:(SAKAdView *)adView; 31 | 32 | - (void)adViewDidTrackImpression:(SAKAdView *)adView; 33 | 34 | @end 35 | 36 | API_AVAILABLE(ios(10.0)) 37 | @interface SAKAdView : UIView 38 | 39 | @property (nonatomic, weak, nullable) id delegate; 40 | @property (nonatomic, weak, nullable) 41 | UIViewController *rootViewController DEPRECATED_MSG_ATTRIBUTE("Use rootViewController delegate property instead"); 42 | 43 | - (instancetype)initWithFormat:(SAKAdViewFormat)adViewFormat; 44 | 45 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 46 | 47 | /// Load ad from a bid payload from a server side bid 48 | /// @param bidPayload ad payload to be rendered by the receiver 49 | /// @param publisherSlotId optional slot ID 50 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 51 | 52 | - (instancetype)init NS_UNAVAILABLE; 53 | - (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE; 54 | - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE; 55 | 56 | @end 57 | 58 | NS_ASSUME_NONNULL_END 59 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKAdViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKAdViewController.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKAdViewController; 13 | 14 | @protocol SAKAdViewControllerDelegate 15 | 16 | /** 17 | * Invoked when receiver starts displaying the ad. 18 | * Receiver must not be dismissed until `adViewControllerAllowAdDismissal:` is called. 19 | */ 20 | - (void)adViewControllerPreventAdDismissal:(SAKAdViewController *)ad; 21 | 22 | /** Invoked after receiver has finished displaying the ad. It's ok to dismiss the ad after you receive this callback. */ 23 | - (void)adViewControllerAllowAdDismissal:(SAKAdViewController *)ad; 24 | 25 | /** Invoked after receiver has fired an ad track. */ 26 | - (void)adViewControllerDidTrackImpression:(SAKAdViewController *)ad; 27 | 28 | /** Invoked when receiver has encountered an error. */ 29 | - (void)adViewController:(SAKAdViewController *)ad didEncounterAdError:(NSError *)error; 30 | 31 | @end 32 | 33 | /** A UIViewController subclass that displays an ad */ 34 | API_AVAILABLE(ios(10.0)) 35 | @interface SAKAdViewController : UIViewController 36 | 37 | @property (nonatomic, weak, nullable) id delegate; 38 | 39 | /** 40 | * An array of "friendly" obstructions (layers rendered on top of the ad displayed by the receiver). 41 | * These layers won't be taken into account while determining whether the ad is 100% visible on screen. 42 | */ 43 | @property (nonatomic, nullable) NSArray *friendlyObstructions; 44 | 45 | + (instancetype) new NS_UNAVAILABLE; 46 | - (instancetype)init NS_UNAVAILABLE; 47 | - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil 48 | bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE; 49 | - (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE; 50 | 51 | - (void)playAd; 52 | - (void)pauseAd; 53 | 54 | @end 55 | 56 | NS_ASSUME_NONNULL_END 57 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKConfigurationGenderEnum.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKConfigurationGenderEnum.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAKConfigurationGenderType) { 11 | SAKConfigurationGenderTypeUnknown = 0, 12 | SAKConfigurationGenderTypeMale, 13 | SAKConfigurationGenderTypeFemale, 14 | SAKConfigurationGenderTypeOther 15 | }; 16 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKError.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKError.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | extern NSString *const SAKErrorDomain; 13 | 14 | NS_ASSUME_NONNULL_END 15 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKErrorCode.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKErrorCode.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAKErrorCode) { 11 | /* 12 | * Generic error 13 | */ 14 | SAKErrorGeneric = 0, 15 | /* 16 | * Network error 17 | */ 18 | SAKErrorNetworkError = 1, 19 | /* 20 | * Cannot request ad due user not eligible 21 | */ 22 | SAKErrorNotEligible = 2, 23 | /* 24 | * Cannot parse response from network request 25 | */ 26 | SAKErrorFailedToParse = 3, 27 | /* 28 | * Cannot request ad due to SDK not ready 29 | */ 30 | SAKErrorSDKNotInitialized = 4, 31 | /* 32 | * No ad returned from server 33 | */ 34 | SAKErrorNoAdAvailable = 5, 35 | /* 36 | * Cannot find creative endpoint to download ad media 37 | */ 38 | SAKErrorCodeNoCreativeEndpoint = 6, 39 | /* 40 | * Media download error 41 | */ 42 | SAKErrorCodeMediaDownloadError = 7, 43 | /* 44 | * Failed to Register 45 | */ 46 | SAKErrorFailedToRegister = 8, 47 | /* 48 | * Ads are disabled 49 | */ 50 | SAKErrorAdsDisabled = 9, 51 | /* 52 | * Ad not visible 53 | */ 54 | SAKErrorAdNotVisible = 10, 55 | }; 56 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKInterstitial.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKInterstitial.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @class SAKInterstitial; 14 | @class SAKAdRequestConfiguration; 15 | 16 | @protocol SAKInterstitialDelegate 17 | 18 | - (void)interstitialDidLoad:(SAKInterstitial *)ad; 19 | 20 | - (void)interstitial:(SAKInterstitial *)ad didFailWithError:(NSError *)error; 21 | 22 | - (void)interstitialDidExpire:(SAKInterstitial *)ad; 23 | 24 | - (void)interstitialWillAppear:(SAKInterstitial *)ad; 25 | 26 | - (void)interstitialDidAppear:(SAKInterstitial *)ad; 27 | 28 | - (void)interstitialWillDisappear:(SAKInterstitial *)ad; 29 | 30 | - (void)interstitialDidDisappear:(SAKInterstitial *)ad; 31 | 32 | - (void)interstitialDidShowAttachment:(SAKInterstitial *)ad; 33 | 34 | - (void)interstitialDidTrackImpression:(SAKInterstitial *)ad; 35 | 36 | @end 37 | 38 | API_AVAILABLE(ios(10.0)) 39 | @interface SAKInterstitial : NSObject 40 | 41 | @property (nonatomic, weak, readwrite, nullable) id delegate; 42 | @property (nonatomic, assign, readonly) BOOL isReady; 43 | 44 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 45 | 46 | /// Load ad from a bid payload from a server side bid 47 | /// @param bidPayload ad payload to be rendered by the receiver 48 | /// @param publisherSlotId optional slot ID 49 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 50 | 51 | /// Presents the Interstitial 52 | /// @param rootViewController view controller to present from 53 | /// @param dismissTransition frame (in screen coordinates) of the rectangle from which the interstitial transition 54 | /// begins and to which it returns. 55 | - (void)presentFromRootViewController:(UIViewController *)rootViewController 56 | dismissTransition:(CGRect)dismissTransition; 57 | 58 | @end 59 | 60 | NS_ASSUME_NONNULL_END 61 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKMobileAd.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKMobileAd.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @class SAKRegisterRequestConfiguration; 13 | 14 | typedef void (^SAKInitializationCompletionHandler)(BOOL success, NSError *_Nullable error); 15 | 16 | API_AVAILABLE(ios(10.0)) 17 | @interface SAKMobileAd : NSObject 18 | 19 | + (SAKMobileAd *)shared; 20 | 21 | @property (nonatomic, assign, readonly) BOOL initialized; 22 | @property (nonatomic, assign) BOOL debug; 23 | @property (nonatomic, assign) BOOL silentModeAudioEnabled; 24 | 25 | - (void)startWithConfiguration:(SAKRegisterRequestConfiguration *)configuration 26 | completion:(nullable SAKInitializationCompletionHandler)completion; 27 | 28 | - (NSString *)sdkVersion; 29 | 30 | - (nullable NSString *)biddingToken; 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKRegisterRequestConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterRequestConfiguration.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "SAKConfigurationGenderEnum.h" 10 | 11 | /** 12 | * AdKit configuration 13 | */ 14 | API_AVAILABLE(ios(10.0)) 15 | @interface SAKRegisterRequestConfiguration : NSObject 16 | 17 | /** 18 | * App ID generated via Snap Kit portal. Required 19 | */ 20 | @property (nonatomic, readonly, copy, nonnull) NSString *snapKitAppId; 21 | /** 22 | * Phone Number of the user 23 | */ 24 | @property (nonatomic, readonly, copy, nullable) NSString *phoneNumber; 25 | /** 26 | * Email of the user 27 | */ 28 | @property (nonatomic, readonly, copy, nullable) NSString *emailAddress; 29 | /** 30 | * Age of the user 31 | */ 32 | @property (nonatomic, readonly) NSInteger age; 33 | /** 34 | * Snapchat Lifestyle Categories targeting options that fit the user 35 | */ 36 | @property (nonatomic, readonly, copy, nullable) NSArray *categories; 37 | /** 38 | * Free form strings that categorize or describe the user 39 | */ 40 | @property (nonatomic, readonly, copy, nullable) NSArray *keywords; 41 | /** 42 | * Gender of the user 43 | */ 44 | @property (nonatomic, readonly) SAKConfigurationGenderType gender; 45 | /** 46 | * Whether or not crash reporting should be disabled 47 | */ 48 | @property (nonatomic, readonly) BOOL crashReportingDisabled; 49 | /** 50 | * Whether or not AdKit should function in test mode 51 | */ 52 | @property (nonatomic, readonly) BOOL testModeEnabled; 53 | 54 | - (instancetype)initWithSnapKitAppId:(nonnull NSString *)snapKitAppId phoneNumber:(nullable NSString *)phoneNumber emailAddress:(nullable NSString *)emailAddress age:(NSInteger)age categories:(nullable NSArray *)categories keywords:(nullable NSArray *)keywords gender:(SAKConfigurationGenderType)gender crashReportingDisabled:(BOOL)crashReportingDisabled testModeEnabled:(BOOL)testModeEnabled; 55 | 56 | @end 57 | 58 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKRegisterRequestConfigurationBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterRequestConfigurationBuilder.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | #import 8 | #import "SAKConfigurationGenderEnum.h" 9 | 10 | @class SAKRegisterRequestConfiguration; 11 | 12 | API_AVAILABLE(ios(10.0)) 13 | @interface SAKRegisterRequestConfigurationBuilder : NSObject 14 | 15 | + (instancetype)registerRequestConfiguration; 16 | 17 | + (instancetype)registerRequestConfigurationFromExistingRegisterRequestConfiguration:(SAKRegisterRequestConfiguration *)existingRegisterRequestConfiguration; 18 | 19 | - (SAKRegisterRequestConfiguration *)build; 20 | 21 | - (instancetype)withSnapKitAppId:(nonnull NSString *)snapKitAppId; 22 | 23 | - (instancetype)withPhoneNumber:(nullable NSString *)phoneNumber; 24 | 25 | - (instancetype)withEmailAddress:(nullable NSString *)emailAddress; 26 | 27 | - (instancetype)withAge:(NSInteger)age; 28 | 29 | - (instancetype)withCategories:(nullable NSArray *)categories; 30 | 31 | - (instancetype)withKeywords:(nullable NSArray *)keywords; 32 | 33 | - (instancetype)withGender:(SAKConfigurationGenderType)gender; 34 | 35 | - (instancetype)withCrashReportingDisabled:(BOOL)crashReportingDisabled; 36 | 37 | - (instancetype)withTestModeEnabled:(BOOL)testModeEnabled; 38 | 39 | @end 40 | 41 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKRegisterSLCEnum.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRegisterSLCEnum.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | typedef NS_ENUM(NSInteger, SAK_SLC_Type) { 11 | SAK_SLC_UNKNOWN = 0, 12 | SAK_SLC_ADVENTURE_SEEKERS, 13 | SAK_SLC_ARTS_CULTURE_MAVENS, 14 | SAK_SLC_AUTOMOTIVE_ENTHUSIASTS, 15 | SAK_SLC_BEACHGOERS_SURFERS, 16 | SAK_SLC_BEAUTY_MAVENS, 17 | SAK_SLC_BOOKWORMS_AVID_READERS, 18 | SAK_SLC_CLUBBERS_PARTY_PEOPLE, 19 | SAK_SLC_COLLEGIATES, 20 | SAK_SLC_COMICS_ANIMATION_FANS, 21 | SAK_SLC_DO_IT_YOURSELFERS, 22 | SAK_SLC_FASHION_STYLE_GURUS, 23 | SAK_SLC_FILM_TV_FANS, 24 | SAK_SLC_ACTION_THRILLER_GENRE_FANS, 25 | SAK_SLC_COMEDY_FANS, 26 | SAK_SLC_CORDCUTTERS, 27 | SAK_SLC_DRAMA_GENRE_FANS, 28 | SAK_SLC_FAMILY_GENRE_FANS, 29 | SAK_SLC_HORROR_GENRE_FANS, 30 | SAK_SLC_MOVIE_THEATER_GOERS, 31 | SAK_SLC_REALITY_TV_FANS, 32 | SAK_SLC_ROMANCE_ROM_COM_FANS, 33 | SAK_SLC_SCI_FI_FANTASY_FANS, 34 | SAK_SLC_SUPERHERO_FILM_FANS, 35 | SAK_SLC_FITNESS_ENTHUSIASTS, 36 | SAK_SLC_CYCLING_ENTHUSIASTS, 37 | SAK_SLC_RUNNING_ENTHUSIASTS, 38 | SAK_SLC_YOGA_ENTHUSIASTS, 39 | SAK_SLC_FOODIES, 40 | SAK_SLC_CANDY_SWEETS_LOVERS, 41 | SAK_SLC_COOKING_ENTHUSIASTS, 42 | SAK_SLC_FAST_FOOD_JUNKIES, 43 | SAK_SLC_VEGANS_ORGANIC_FOODIES, 44 | SAK_SLC_GAMERS, 45 | SAK_SLC_CASUAL_MOBILE_GAMERS, 46 | SAK_SLC_CONSOLE_PC_GAMERS, 47 | SAK_SLC_GREEN_LIVING_ENTHUSIASTS, 48 | SAK_SLC_HIPSTERS_TRENDSETTERS, 49 | SAK_SLC_HOME_DECORISTAS, 50 | SAK_SLC_INVESTORS_ENTREPRENEURS, 51 | SAK_SLC_MATH_SCIENCE_ENTHUSIASTS, 52 | SAK_SLC_MENS_LIFESTYLE, 53 | SAK_SLC_SHARP_DRESSED_MEN, 54 | SAK_SLC_MUSIC_FANS, 55 | SAK_SLC_CONCERT_FESTIVAL_GOERS, 56 | SAK_SLC_COUNTRY_MUSIC_FANS, 57 | SAK_SLC_DANCE_ELECTRONIC_MUSIC_FANS, 58 | SAK_SLC_INDIE_ALTERNATIVE_MUSIC_FANS, 59 | SAK_SLC_POP_MUSIC_FANS, 60 | SAK_SLC_PUNK_METAL_FANS, 61 | SAK_SLC_ROCK_MUSIC_FANS, 62 | SAK_SLC_URBAN_HIP_HOP_MUSIC_FANS, 63 | SAK_SLC_NEWS_WATCHERS, 64 | SAK_SLC_BUSINESS_NEWS_WATCHERS, 65 | SAK_SLC_CELEBRITY_NEWS_WATCHERS, 66 | SAK_SLC_POLITICAL_NEWS_WATCHERS, 67 | SAK_SLC_OUTDOOR_NATURE_ENTHUSIASTS, 68 | SAK_SLC_PARENTS_FAMILY_FOCUSED, 69 | SAK_SLC_PET_ANIMAL_LOVERS, 70 | SAK_SLC_PHILANTHROPISTS, 71 | SAK_SLC_PHOTOGRAPHERS, 72 | SAK_SLC_SHOPPERS, 73 | SAK_SLC_BIG_BOX_SHOPPERS, 74 | SAK_SLC_DEPARTMENT_STORE_SHOPPERS, 75 | SAK_SLC_LUXURY_SHOPPERS, 76 | SAK_SLC_ONLINE_SHOPPERS, 77 | SAK_SLC_TOY_SHOPPERS, 78 | SAK_SLC_SPORTS_FANS, 79 | SAK_SLC_COLLEGE_BASKETBALL_FANS, 80 | SAK_SLC_AMERICAN_FOOTBALL_FANS, 81 | SAK_SLC_BASEBALL_FANS, 82 | SAK_SLC_BASKETBALL_FANS, 83 | SAK_SLC_COLLEGE_FOOTBALL_FANS, 84 | SAK_SLC_FIGHT_WRESTLING_FANS, 85 | SAK_SLC_GOLFERS, 86 | SAK_SLC_HOCKEY_FANS, 87 | SAK_SLC_MOTOR_SPORTS_FANS, 88 | SAK_SLC_OLYMPICS_ENTHUSIASTS, 89 | SAK_SLC_SNOW_SPORT_ENTHUSIASTS, 90 | SAK_SLC_SOCCER_ENTHUSIASTS, 91 | SAK_SLC_STREET_SPORT_ENTHUSIASTS, 92 | SAK_SLC_TENNIS_RACQUET_ENTHUSIASTS, 93 | SAK_SLC_WATER_SPORT_ENTHUSIASTS, 94 | SAK_SLC_TECHIES_GADGET_FANS, 95 | SAK_SLC_TRAVEL_ENTHUSIASTS, 96 | SAK_SLC_BUSINESS_TRAVELERS, 97 | SAK_SLC_FAMILY_TRAVELERS, 98 | SAK_SLC_FREQUENT_TRAVELERS, 99 | SAK_SLC_WOMENS_LIFESTYLE, 100 | SAK_SLC_AUTOMOTIVE_SHOPPERS, 101 | SAK_SLC_HIGH_SCHOOLERS, 102 | SAK_SLC_WELLNESS_HEALTHY_LIFESTYLE, 103 | SAK_SLC_CLASSICAL_OPERA_FANS, 104 | SAK_SLC_JAZZ_BLUES_FANS, 105 | SAK_SLC_LATIN_MUSIC_FANS, 106 | SAK_SLC_SOUL_RNB_FANS, 107 | SAK_SLC_WORLD_MUSIC_FANS, 108 | SAK_SLC_CRICKET_FANS, 109 | SAK_SLC_CRIME_MYSTERY_GENRE_FANS, 110 | SAK_SLC_INDIE_FOREIGN_FILM_FANS, 111 | SAK_SLC_TALENT_COMPETITION_SHOW_FANS, 112 | SAK_SLC_TALK_SHOW_FANS, 113 | SAK_SLC_TEEN_YOUNG_ADULT_GENRE_FANS, 114 | SAK_SLC_BURGER_LOVERS, 115 | SAK_SLC_COFFEE_LOVERS, 116 | SAK_SLC_PIZZA_LOVERS, 117 | SAK_SLC_SHOPPING_MALL_SHOPPERS, 118 | SAK_SLC_CASINO_VISITORS, 119 | SAK_SLC_THEME_PARK_VISITORS, 120 | SAK_SLC_SNEAKERHEADS, 121 | SAK_SLC_ENERGY_DRINK_CONSUMERS, 122 | SAK_SLC_SOFT_DRINK_CONSUMERS, 123 | SAK_SLC_SPORTS_DRINK_CONSUMERS, 124 | SAK_SLC_SOCIAL_DRINKERS, 125 | SAK_SLC_BEER_DRINKERS, 126 | SAK_SLC_WINE_ENTHUSIASTS, 127 | SAK_SLC_LIQUOR_SPIRITS_DRINKERS, 128 | SAK_SLC_RIDESHARE_RIDERS, 129 | SAK_SLC_DISCOUNT_THRIFTY_SHOPPERS, 130 | SAK_SLC_FOOD_DELIVERY_DINERS, 131 | SAK_SLC_DATING_ROMANCE_SEEKERS, 132 | SAK_SLC_FUN_TRIVIA_QUIZ_FANATICS, 133 | SAK_SLC_MEME_WATCHERS, 134 | SAK_SLC_CHAT_FICTION_ENTHUSIASTS, 135 | SAK_SLC_ADVOCATES_ACTIVISTS, 136 | SAK_SLC_FANTASY_SPORTS_FANS, 137 | SAK_SLC_NEW_PHONE_SEEKERS, 138 | SAK_SLC_ASTROLOGY_HOROSCOPE_FANS, 139 | SAK_SLC_MONEY_MINDERS, 140 | SAK_SLC_TATTOO_ENTHUSIASTS, 141 | SAK_SLC_AMERICAN_CUISINE_LOVERS, 142 | SAK_SLC_BBQ_LOVERS, 143 | SAK_SLC_CASUAL_DINING_LOVERS, 144 | SAK_SLC_CHINESE_CUISINE_LOVERS, 145 | SAK_SLC_DELI_DINER_LOVERS, 146 | SAK_SLC_DONUT_LOVERS, 147 | SAK_SLC_FRENCH_CUISINE_LOVERS, 148 | SAK_SLC_ICE_CREAM_LOVERS, 149 | SAK_SLC_INDIAN_CUISINE_LOVERS, 150 | SAK_SLC_ITALIAN_CUISINE_LOVERS, 151 | SAK_SLC_JAPANESE_CUISINE_LOVERS, 152 | SAK_SLC_JUICE_SMOOTHIE_LOVERS, 153 | SAK_SLC_KOREAN_CUISINE_LOVERS, 154 | SAK_SLC_MEXICAN_CUISINE_LOVERS, 155 | SAK_SLC_MIDDLE_EASTERN_CUISINE_LOVERS, 156 | SAK_SLC_SEAFOOD_LOVERS, 157 | SAK_SLC_STEAKHOUSE_LOVERS, 158 | SAK_SLC_THAI_CUISINE_LOVERS, 159 | SAK_SLC_ACTION_GAMERS, 160 | SAK_SLC_HUMOR_FANS, 161 | SAK_SLC_ESPORTS_ENTHUSIASTS, 162 | SAK_SLC_MUSIC_GAMERS, 163 | SAK_SLC_PUZZLE_GAMERS, 164 | SAK_SLC_RACING_GAMERS, 165 | SAK_SLC_ROLE_PLAYING_GAMERS, 166 | SAK_SLC_SHOOTER_GAME_ENTHUSIASTS, 167 | SAK_SLC_SPORTS_GAMERS, 168 | SAK_SLC_STRATEGY_GAMERS, 169 | SAK_SLC_TRIVIA_GAMERS, 170 | SAK_SLC_CASUAL_APPAREL_SHOPPERS, 171 | SAK_SLC_CASUAL_FOOTWEAR_SHOPPERS, 172 | SAK_SLC_CONSUMER_TECH_SHOPPERS, 173 | SAK_SLC_COSMETICS_SHOPPERS, 174 | SAK_SLC_HAIRCARE_SHOPPERS, 175 | SAK_SLC_HEADWEAR_SHOPPERS, 176 | SAK_SLC_HOME_FURNITURE_SHOPPERS, 177 | SAK_SLC_JEWELRY_WATCH_SHOPPERS, 178 | SAK_SLC_MENS_FASHION_SHOPPERS, 179 | SAK_SLC_MENS_GROOMING_SHOPPERS, 180 | SAK_SLC_NAIL_CARE_SHOPPERS, 181 | SAK_SLC_ONLINE_GROCERY_MEAL_KIT_SHOPPERS, 182 | SAK_SLC_ORAL_CARE_SHOPPERS, 183 | SAK_SLC_PERSONAL_CARE_PRODUCT_SHOPPERS, 184 | SAK_SLC_PRESCRIPTION_EYEWEAR_SHOPPERS, 185 | SAK_SLC_SPA_BEAUTY_TREATMENT_SHOPPERS, 186 | SAK_SLC_SPORT_LEISURE_APPAREL_SHOPPERS, 187 | SAK_SLC_WOMENS_FASHION_SHOPPERS, 188 | SAK_SLC_YOUTH_APPAREL_SHOPPERS, 189 | SAK_SLC_CAT_LOVERS, 190 | SAK_SLC_DOG_LOVERS, 191 | }; 192 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKRewardedAd.h: -------------------------------------------------------------------------------- 1 | // 2 | // SAKRewardedAd.h 3 | // SAKSDK 4 | // 5 | // Copyright (c) 2021 Snap Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | @class SAKRewardedAd; 12 | @class SAKAdRequestConfiguration; 13 | 14 | NS_ASSUME_NONNULL_BEGIN 15 | 16 | @protocol SAKRewardedAdDelegate 17 | 18 | - (void)rewardedAdDidLoad:(SAKRewardedAd *)ad; 19 | 20 | - (void)rewardedAd:(SAKRewardedAd *)ad didFailWithError:(NSError *)error; 21 | 22 | - (void)rewardedAdDidExpire:(SAKRewardedAd *)ad; 23 | 24 | - (void)rewardedAdWillAppear:(SAKRewardedAd *)ad; 25 | 26 | - (void)rewardedAdDidAppear:(SAKRewardedAd *)ad; 27 | 28 | - (void)rewardedAdWillDisappear:(SAKRewardedAd *)ad; 29 | 30 | - (void)rewardedAdDidDisappear:(SAKRewardedAd *)ad; 31 | 32 | - (void)rewardedAdDidShowAttachment:(SAKRewardedAd *)ad; 33 | 34 | - (void)rewardedAdDidEarnReward:(SAKRewardedAd *)ad; 35 | 36 | @end 37 | 38 | API_AVAILABLE(ios(10.0)) 39 | @interface SAKRewardedAd : NSObject 40 | 41 | @property (nonatomic, weak, readwrite, nullable) id delegate; 42 | @property (nonatomic, assign, readonly) BOOL isReady; 43 | 44 | - (void)loadRequest:(nullable SAKAdRequestConfiguration *)configuration; 45 | 46 | /// Load ad from a bid payload from a server side bid 47 | /// @param bidPayload ad payload to be rendered by the receiver 48 | /// @param publisherSlotId optional slot ID 49 | - (void)loadAdWithBidPayload:(NSData *)bidPayload publisherSlotId:(nullable NSString *)publisherSlotId; 50 | 51 | /// Presents the Rewarded Ad 52 | /// @param rootViewController view controller to present from 53 | /// @param dismissTransition frame (in screen coordinates) of the rectangle from which the rewarded ad transition begins 54 | /// and to which it returns. 55 | - (void)presentFromRootViewController:(UIViewController *)rootViewController 56 | dismissTransition:(CGRect)dismissTransition; 57 | 58 | @end 59 | 60 | NS_ASSUME_NONNULL_END 61 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Headers/SAKSDK.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import 4 | #import 5 | #import 6 | #import 7 | #import 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Info.plist -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SAKSDK { 2 | umbrella header "SAKSDK.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/SAKSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/SAKSDK -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Assets.car 8 | 9 | 62IjqU5j9ZpzFRnwoEmbwznLylY= 10 | 11 | Headers/SAKAdContainer.h 12 | 13 | dJZJsmwrU5PospJo+NUBOr83WL0= 14 | 15 | Headers/SAKAdRequestConfiguration.h 16 | 17 | kKdnGaugYkZ23HuUJ+V0odTojls= 18 | 19 | Headers/SAKAdRequestConfigurationBuilder.h 20 | 21 | 1p2VJb0lIho7v46boBb3ENMl8+E= 22 | 23 | Headers/SAKAdRequestLocationConfiguration.h 24 | 25 | FHlt5TOdlbRB+30ZmAQWTI6jWvg= 26 | 27 | Headers/SAKAdView.h 28 | 29 | v6RWxMQHY6FQPHycrbHSVJGHPJ8= 30 | 31 | Headers/SAKAdViewController.h 32 | 33 | QsEM65JURrTteEW5xUZaoEdFn6M= 34 | 35 | Headers/SAKConfigurationGenderEnum.h 36 | 37 | P2hRkQYIprbn0Cg7CgBSACFkV0U= 38 | 39 | Headers/SAKError.h 40 | 41 | aDcfQXRPPe76HMEyysxB32RYpJ4= 42 | 43 | Headers/SAKErrorCode.h 44 | 45 | trRMTCcrXyf1MkJxn34mNY0VEGQ= 46 | 47 | Headers/SAKInterstitial.h 48 | 49 | zkteWII1TLjdJqWGV1tbI/YDkWg= 50 | 51 | Headers/SAKMobileAd.h 52 | 53 | hL5eGWXLCrSkolR3F5xHlD4j/3c= 54 | 55 | Headers/SAKRegisterRequestConfiguration.h 56 | 57 | HrCl7P0veDXSH/j5TiXdiKHdrkA= 58 | 59 | Headers/SAKRegisterRequestConfigurationBuilder.h 60 | 61 | Han+4c5mBf5Dz3jxeljTi0iGsPk= 62 | 63 | Headers/SAKRegisterSLCEnum.h 64 | 65 | 30qAjtkEGmTCWNJUNG04u4sNNk0= 66 | 67 | Headers/SAKRewardedAd.h 68 | 69 | CL02VgcNTkf0xst35el9H4scliA= 70 | 71 | Headers/SAKSDK.h 72 | 73 | Rbx5nvmvvYPaDLFBLxEA4pyriCs= 74 | 75 | Info.plist 76 | 77 | bbk+tfNIpwn+Xm/7lsmdczzg3Rs= 78 | 79 | Modules/module.modulemap 80 | 81 | bgoLHx2dN5HDZZJhTqEpDOO0scY= 82 | 83 | ar.lproj/SAKSDKStrings.strings 84 | 85 | hash 86 | 87 | 1Y2zr6CKCNh4x0PNtCxE5IZm3LE= 88 | 89 | optional 90 | 91 | 92 | bn-BD.lproj/SAKSDKStrings.strings 93 | 94 | hash 95 | 96 | epggaK4Aaz5MNIdVu8rsE+ZkAGk= 97 | 98 | optional 99 | 100 | 101 | bn-IN.lproj/SAKSDKStrings.strings 102 | 103 | hash 104 | 105 | 6PjYBeHrVw41SadVFAiR5JWacQY= 106 | 107 | optional 108 | 109 | 110 | da.lproj/SAKSDKStrings.strings 111 | 112 | hash 113 | 114 | cRamjBu5XvmqG8ZjiENUE7CfdfI= 115 | 116 | optional 117 | 118 | 119 | de.lproj/SAKSDKStrings.strings 120 | 121 | hash 122 | 123 | CLjuZXgRU04HuAaN8hAQFOlG7jo= 124 | 125 | optional 126 | 127 | 128 | el.lproj/SAKSDKStrings.strings 129 | 130 | hash 131 | 132 | Tu4XhXHxnO7MCVc5Sy0pXlzLx70= 133 | 134 | optional 135 | 136 | 137 | en-GB.lproj/SAKSDKStrings.strings 138 | 139 | hash 140 | 141 | Sdr203kIOChV0vWiEsC3X+jdbAo= 142 | 143 | optional 144 | 145 | 146 | en.lproj/SAKSDKStrings.strings 147 | 148 | hash 149 | 150 | 19R1/Ed0QwP23usIVugj5dFfTPg= 151 | 152 | optional 153 | 154 | 155 | es-AR.lproj/SAKSDKStrings.strings 156 | 157 | hash 158 | 159 | h2x3SF8rfJ7RD67uNes4Xh34t7k= 160 | 161 | optional 162 | 163 | 164 | es-ES.lproj/SAKSDKStrings.strings 165 | 166 | hash 167 | 168 | OjNXLep0ZXR8KO3DikwuXnDUADY= 169 | 170 | optional 171 | 172 | 173 | es-MX.lproj/SAKSDKStrings.strings 174 | 175 | hash 176 | 177 | ohEyULy82+2MBI42JVzDdbbqBao= 178 | 179 | optional 180 | 181 | 182 | es.lproj/SAKSDKStrings.strings 183 | 184 | hash 185 | 186 | QHFeSZ89mUWF6TCiauu2J0ou3dA= 187 | 188 | optional 189 | 190 | 191 | fi.lproj/SAKSDKStrings.strings 192 | 193 | hash 194 | 195 | WCN5R6LX5iaJwDs4M6i8CuVjo14= 196 | 197 | optional 198 | 199 | 200 | fil-PH.lproj/SAKSDKStrings.strings 201 | 202 | hash 203 | 204 | 9IIt6Qd5c35pPFbqgiQmPGgy8gM= 205 | 206 | optional 207 | 208 | 209 | fr.lproj/SAKSDKStrings.strings 210 | 211 | hash 212 | 213 | VBS2Xu6AnC6xK+vGIF/6aVVODVs= 214 | 215 | optional 216 | 217 | 218 | gu-IN.lproj/SAKSDKStrings.strings 219 | 220 | hash 221 | 222 | 22O/L6jakAN6itEGcEPbljKvArw= 223 | 224 | optional 225 | 226 | 227 | hi-IN.lproj/SAKSDKStrings.strings 228 | 229 | hash 230 | 231 | qUbwLo3O0yBd1U73eEVVYAYf2vQ= 232 | 233 | optional 234 | 235 | 236 | id.lproj/SAKSDKStrings.strings 237 | 238 | hash 239 | 240 | Dr8/wMblIt4jdD1heqXBuJn3pyM= 241 | 242 | optional 243 | 244 | 245 | it.lproj/SAKSDKStrings.strings 246 | 247 | hash 248 | 249 | 67YvKNiaDV7adRxgAhht/9jRovg= 250 | 251 | optional 252 | 253 | 254 | ja.lproj/SAKSDKStrings.strings 255 | 256 | hash 257 | 258 | xMV+WxtGVpMUpmiuy/f9gTolpks= 259 | 260 | optional 261 | 262 | 263 | kn-IN.lproj/SAKSDKStrings.strings 264 | 265 | hash 266 | 267 | VY1GjJJxpA6pkyOpKTMX8eeskDY= 268 | 269 | optional 270 | 271 | 272 | ko.lproj/SAKSDKStrings.strings 273 | 274 | hash 275 | 276 | 6ujUrFF6eVrFRsYYckTuaUa3li8= 277 | 278 | optional 279 | 280 | 281 | ml-IN.lproj/SAKSDKStrings.strings 282 | 283 | hash 284 | 285 | gtyEOBFlCcaLnSGnVWeQRoLvWcI= 286 | 287 | optional 288 | 289 | 290 | mr-IN.lproj/SAKSDKStrings.strings 291 | 292 | hash 293 | 294 | 4utHFRpCQVZ0ujAH38M8TKlfWnc= 295 | 296 | optional 297 | 298 | 299 | ms-MY.lproj/SAKSDKStrings.strings 300 | 301 | hash 302 | 303 | pCuA1r+Sgb+xr80nTRtpUJkUhUQ= 304 | 305 | optional 306 | 307 | 308 | nb.lproj/SAKSDKStrings.strings 309 | 310 | hash 311 | 312 | vdSO8PSRXaVTCAhM8Kqbs+u6qUE= 313 | 314 | optional 315 | 316 | 317 | nl.lproj/SAKSDKStrings.strings 318 | 319 | hash 320 | 321 | PjQWUqTfKGya8/81jegpDuDe32I= 322 | 323 | optional 324 | 325 | 326 | pa-IN.lproj/SAKSDKStrings.strings 327 | 328 | hash 329 | 330 | Nt7L41AVcS+i74UAHa6oQ3MGHYE= 331 | 332 | optional 333 | 334 | 335 | pl.lproj/SAKSDKStrings.strings 336 | 337 | hash 338 | 339 | CrZMf1YPbtvU5SeoegA+p54M0kQ= 340 | 341 | optional 342 | 343 | 344 | pt-PT.lproj/SAKSDKStrings.strings 345 | 346 | hash 347 | 348 | HW0eIAtBJwBHgUjPfe8fOysK89E= 349 | 350 | optional 351 | 352 | 353 | pt.lproj/SAKSDKStrings.strings 354 | 355 | hash 356 | 357 | 8xMclcKKqA/hU3vaa1Ne5f/nmjE= 358 | 359 | optional 360 | 361 | 362 | ro.lproj/SAKSDKStrings.strings 363 | 364 | hash 365 | 366 | TGYl2Ry3TPbD8FIc7fNFFkl7zdA= 367 | 368 | optional 369 | 370 | 371 | ru.lproj/SAKSDKStrings.strings 372 | 373 | hash 374 | 375 | 4/IvpI+kLztJ/KJLIEcWSzGcf2Y= 376 | 377 | optional 378 | 379 | 380 | sv.lproj/SAKSDKStrings.strings 381 | 382 | hash 383 | 384 | ihuU+iD1a91Ec7937rlH/AIlBqQ= 385 | 386 | optional 387 | 388 | 389 | ta-IN.lproj/SAKSDKStrings.strings 390 | 391 | hash 392 | 393 | DBYa/LH0mBfRNX1gpQlV7NpfM3M= 394 | 395 | optional 396 | 397 | 398 | te-IN.lproj/SAKSDKStrings.strings 399 | 400 | hash 401 | 402 | WWFCmgM45eJOfCAKqtvgPB08rZ0= 403 | 404 | optional 405 | 406 | 407 | th-TH.lproj/SAKSDKStrings.strings 408 | 409 | hash 410 | 411 | loRex8QwWDYT7C830ImxO5zoZWc= 412 | 413 | optional 414 | 415 | 416 | tr.lproj/SAKSDKStrings.strings 417 | 418 | hash 419 | 420 | UBx4UkQSQVnxb1Bk7JEPtdG6xDg= 421 | 422 | optional 423 | 424 | 425 | ur-PK.lproj/SAKSDKStrings.strings 426 | 427 | hash 428 | 429 | /5VRJjWQaiftZJqO/OCQ+WjNNjs= 430 | 431 | optional 432 | 433 | 434 | vi-VN.lproj/SAKSDKStrings.strings 435 | 436 | hash 437 | 438 | lnOsAm1nT2lU+pofVB1BFHYL5to= 439 | 440 | optional 441 | 442 | 443 | zh-Hans.lproj/SAKSDKStrings.strings 444 | 445 | hash 446 | 447 | GYS1w0uSk/sZS9DWJbz6r6y6fxk= 448 | 449 | optional 450 | 451 | 452 | zh-Hant.lproj/SAKSDKStrings.strings 453 | 454 | hash 455 | 456 | khExdJjT1A9IdE62nWh09Y5sBqc= 457 | 458 | optional 459 | 460 | 461 | 462 | files2 463 | 464 | Assets.car 465 | 466 | hash 467 | 468 | 62IjqU5j9ZpzFRnwoEmbwznLylY= 469 | 470 | hash2 471 | 472 | Qj8fp3eWrgWDmpXZ7BN08XeZUGaNwEr/9ckIkV0iKjA= 473 | 474 | 475 | Headers/SAKAdContainer.h 476 | 477 | hash 478 | 479 | dJZJsmwrU5PospJo+NUBOr83WL0= 480 | 481 | hash2 482 | 483 | Sx+ZdtQ4UhjxcZIKWhB5FDK0OuAEdsMHO+WNVz6Wva0= 484 | 485 | 486 | Headers/SAKAdRequestConfiguration.h 487 | 488 | hash 489 | 490 | kKdnGaugYkZ23HuUJ+V0odTojls= 491 | 492 | hash2 493 | 494 | /x5GgftVOb3ZFQox8ywNa6RkqPZq195u6LBWl2O9uF4= 495 | 496 | 497 | Headers/SAKAdRequestConfigurationBuilder.h 498 | 499 | hash 500 | 501 | 1p2VJb0lIho7v46boBb3ENMl8+E= 502 | 503 | hash2 504 | 505 | l1RWqfS0WxEKhOqWs7lpCXj1DktSwUeqQoeGFlLskWQ= 506 | 507 | 508 | Headers/SAKAdRequestLocationConfiguration.h 509 | 510 | hash 511 | 512 | FHlt5TOdlbRB+30ZmAQWTI6jWvg= 513 | 514 | hash2 515 | 516 | tB9TllvLiZz2zOz5GKHPrdcmld9u4s9yMDabtySl8jw= 517 | 518 | 519 | Headers/SAKAdView.h 520 | 521 | hash 522 | 523 | v6RWxMQHY6FQPHycrbHSVJGHPJ8= 524 | 525 | hash2 526 | 527 | Dm9Vdcyt3K6jzXVSXT8Yl423CzK6WU+RwADmU2kz0oo= 528 | 529 | 530 | Headers/SAKAdViewController.h 531 | 532 | hash 533 | 534 | QsEM65JURrTteEW5xUZaoEdFn6M= 535 | 536 | hash2 537 | 538 | J4jO/rigCgZwuRA9ZTvbXLMRevRGwao9cphkU/8f514= 539 | 540 | 541 | Headers/SAKConfigurationGenderEnum.h 542 | 543 | hash 544 | 545 | P2hRkQYIprbn0Cg7CgBSACFkV0U= 546 | 547 | hash2 548 | 549 | GIhM/oo+fpmuCt1scqeqgG712fBVrHgD1gK5b4kXhWI= 550 | 551 | 552 | Headers/SAKError.h 553 | 554 | hash 555 | 556 | aDcfQXRPPe76HMEyysxB32RYpJ4= 557 | 558 | hash2 559 | 560 | JufIKLrdFSiZFnuMEG198kvsJUteKdyIY1m0lO9QrrY= 561 | 562 | 563 | Headers/SAKErrorCode.h 564 | 565 | hash 566 | 567 | trRMTCcrXyf1MkJxn34mNY0VEGQ= 568 | 569 | hash2 570 | 571 | ADOZeOLwxskigfo6jJV/1dfuNItdfVif53kyDHOh9vQ= 572 | 573 | 574 | Headers/SAKInterstitial.h 575 | 576 | hash 577 | 578 | zkteWII1TLjdJqWGV1tbI/YDkWg= 579 | 580 | hash2 581 | 582 | DT8EWcZ61cX5ZyPAJJWJwhJVjxVUl+hGjQrP4w7+unY= 583 | 584 | 585 | Headers/SAKMobileAd.h 586 | 587 | hash 588 | 589 | hL5eGWXLCrSkolR3F5xHlD4j/3c= 590 | 591 | hash2 592 | 593 | hIhdscYmXhPgmM3jC0yOMAE92QsivxpGXdMBxpJMOXY= 594 | 595 | 596 | Headers/SAKRegisterRequestConfiguration.h 597 | 598 | hash 599 | 600 | HrCl7P0veDXSH/j5TiXdiKHdrkA= 601 | 602 | hash2 603 | 604 | 7wp3BEz6J7vZ4Ns/B4+3UZa4yoNeo3rL/rls4zZUhl4= 605 | 606 | 607 | Headers/SAKRegisterRequestConfigurationBuilder.h 608 | 609 | hash 610 | 611 | Han+4c5mBf5Dz3jxeljTi0iGsPk= 612 | 613 | hash2 614 | 615 | p0dMbraeavMQmWzEmdf/8kcBTMcqQhIRwYwFO0Wam4I= 616 | 617 | 618 | Headers/SAKRegisterSLCEnum.h 619 | 620 | hash 621 | 622 | 30qAjtkEGmTCWNJUNG04u4sNNk0= 623 | 624 | hash2 625 | 626 | /IX+5XTzJ0sih9kOlLt6X3BUc9c5b3BhOIcfBhLDnfk= 627 | 628 | 629 | Headers/SAKRewardedAd.h 630 | 631 | hash 632 | 633 | CL02VgcNTkf0xst35el9H4scliA= 634 | 635 | hash2 636 | 637 | 7uvO3ma/LgM7xV0tQJ0sC4ySjWRyMAFUG3rv1yfv4Kw= 638 | 639 | 640 | Headers/SAKSDK.h 641 | 642 | hash 643 | 644 | Rbx5nvmvvYPaDLFBLxEA4pyriCs= 645 | 646 | hash2 647 | 648 | 65M3hv+PSPB4exUcpCVbbLpQebkz13cLtZvT6ftHuhM= 649 | 650 | 651 | Modules/module.modulemap 652 | 653 | hash 654 | 655 | bgoLHx2dN5HDZZJhTqEpDOO0scY= 656 | 657 | hash2 658 | 659 | e6IGpF2828qvzuxEH+w3IpI2HvTHfi7ymjnQO+hXbe4= 660 | 661 | 662 | ar.lproj/SAKSDKStrings.strings 663 | 664 | hash 665 | 666 | 1Y2zr6CKCNh4x0PNtCxE5IZm3LE= 667 | 668 | hash2 669 | 670 | nsMaFlYtTNdg1NeBZzHAdTThLsHGno3kLdHfgOSGlzw= 671 | 672 | optional 673 | 674 | 675 | bn-BD.lproj/SAKSDKStrings.strings 676 | 677 | hash 678 | 679 | epggaK4Aaz5MNIdVu8rsE+ZkAGk= 680 | 681 | hash2 682 | 683 | yua+XRHaDPEl2ysjU1mybBcziNsWhix1jcNwgsGVE8I= 684 | 685 | optional 686 | 687 | 688 | bn-IN.lproj/SAKSDKStrings.strings 689 | 690 | hash 691 | 692 | 6PjYBeHrVw41SadVFAiR5JWacQY= 693 | 694 | hash2 695 | 696 | 4tGHDDOM4+bVTna6YONBL5/9NdBLf3jif/3e/scEaLM= 697 | 698 | optional 699 | 700 | 701 | da.lproj/SAKSDKStrings.strings 702 | 703 | hash 704 | 705 | cRamjBu5XvmqG8ZjiENUE7CfdfI= 706 | 707 | hash2 708 | 709 | JBo7TQUQu2v9zLXq3i//Iai05FJ7VVoJzGQ9Ndiq/Cw= 710 | 711 | optional 712 | 713 | 714 | de.lproj/SAKSDKStrings.strings 715 | 716 | hash 717 | 718 | CLjuZXgRU04HuAaN8hAQFOlG7jo= 719 | 720 | hash2 721 | 722 | x3E9jx4RK0RoXSnX2TSXfEm3FF58UMSC5aBfyZXJt98= 723 | 724 | optional 725 | 726 | 727 | el.lproj/SAKSDKStrings.strings 728 | 729 | hash 730 | 731 | Tu4XhXHxnO7MCVc5Sy0pXlzLx70= 732 | 733 | hash2 734 | 735 | g2Q/H5lYBDs9Y8dNWt5yTUTyk3yU7uRObD9YggWu2IE= 736 | 737 | optional 738 | 739 | 740 | en-GB.lproj/SAKSDKStrings.strings 741 | 742 | hash 743 | 744 | Sdr203kIOChV0vWiEsC3X+jdbAo= 745 | 746 | hash2 747 | 748 | A0Mhm7n2jFADeQW+as8658Hg4XwyN3eNqJfrGrnkGJc= 749 | 750 | optional 751 | 752 | 753 | en.lproj/SAKSDKStrings.strings 754 | 755 | hash 756 | 757 | 19R1/Ed0QwP23usIVugj5dFfTPg= 758 | 759 | hash2 760 | 761 | +YXBncOKSxqOll0Ntvv7gF1Bda7o8RQhLVA+/klO5OM= 762 | 763 | optional 764 | 765 | 766 | es-AR.lproj/SAKSDKStrings.strings 767 | 768 | hash 769 | 770 | h2x3SF8rfJ7RD67uNes4Xh34t7k= 771 | 772 | hash2 773 | 774 | GWhc1gWcF5oXEU2OgjYyIhJASnc1PwdZvMsQbeU4pHE= 775 | 776 | optional 777 | 778 | 779 | es-ES.lproj/SAKSDKStrings.strings 780 | 781 | hash 782 | 783 | OjNXLep0ZXR8KO3DikwuXnDUADY= 784 | 785 | hash2 786 | 787 | sUjfPuIecoEbasoaVak1uCM62wjHpQ/CgGSHr0ZyvKA= 788 | 789 | optional 790 | 791 | 792 | es-MX.lproj/SAKSDKStrings.strings 793 | 794 | hash 795 | 796 | ohEyULy82+2MBI42JVzDdbbqBao= 797 | 798 | hash2 799 | 800 | BsZebrGZE3dD/WUQJ7emF0KG+wGIDZIyXDKzY7tkzLM= 801 | 802 | optional 803 | 804 | 805 | es.lproj/SAKSDKStrings.strings 806 | 807 | hash 808 | 809 | QHFeSZ89mUWF6TCiauu2J0ou3dA= 810 | 811 | hash2 812 | 813 | cTeYQ2DLmL35mC2MW6MOQDS7sliAgZInnpv7BkEqU5w= 814 | 815 | optional 816 | 817 | 818 | fi.lproj/SAKSDKStrings.strings 819 | 820 | hash 821 | 822 | WCN5R6LX5iaJwDs4M6i8CuVjo14= 823 | 824 | hash2 825 | 826 | ROgWDQuHm8g+dTqtlGVbO8VxJ4dWs4WTyZK5weUEjIk= 827 | 828 | optional 829 | 830 | 831 | fil-PH.lproj/SAKSDKStrings.strings 832 | 833 | hash 834 | 835 | 9IIt6Qd5c35pPFbqgiQmPGgy8gM= 836 | 837 | hash2 838 | 839 | ek4ixJ3IToVElLbK5X3vbKlLoFaEbDcRwr7wnJ58HpU= 840 | 841 | optional 842 | 843 | 844 | fr.lproj/SAKSDKStrings.strings 845 | 846 | hash 847 | 848 | VBS2Xu6AnC6xK+vGIF/6aVVODVs= 849 | 850 | hash2 851 | 852 | vexmcdz96WG7QKe1/MZ3l+x6kd/EPFYJT31TMdjwKuM= 853 | 854 | optional 855 | 856 | 857 | gu-IN.lproj/SAKSDKStrings.strings 858 | 859 | hash 860 | 861 | 22O/L6jakAN6itEGcEPbljKvArw= 862 | 863 | hash2 864 | 865 | 67/iU4RpRjQo/dWjA4dhvGhd6pb9tN9VfQhhWEHO+ao= 866 | 867 | optional 868 | 869 | 870 | hi-IN.lproj/SAKSDKStrings.strings 871 | 872 | hash 873 | 874 | qUbwLo3O0yBd1U73eEVVYAYf2vQ= 875 | 876 | hash2 877 | 878 | LSluXY4h8sm57gn/uah8Wq0eyoQQSUemzICgrVnxV/A= 879 | 880 | optional 881 | 882 | 883 | id.lproj/SAKSDKStrings.strings 884 | 885 | hash 886 | 887 | Dr8/wMblIt4jdD1heqXBuJn3pyM= 888 | 889 | hash2 890 | 891 | B1tsvT5pzh+pjuyo//DybbPAifoa7dx6LpyQpAbfLIQ= 892 | 893 | optional 894 | 895 | 896 | it.lproj/SAKSDKStrings.strings 897 | 898 | hash 899 | 900 | 67YvKNiaDV7adRxgAhht/9jRovg= 901 | 902 | hash2 903 | 904 | sCyNVgwVu9iX/BWOf3VPWNYcFt+oNVg9HYsFSsSKZVY= 905 | 906 | optional 907 | 908 | 909 | ja.lproj/SAKSDKStrings.strings 910 | 911 | hash 912 | 913 | xMV+WxtGVpMUpmiuy/f9gTolpks= 914 | 915 | hash2 916 | 917 | h6ketEN41bf/rfl35rh+sNSXrSYEyCpe8NkzGAsWiuU= 918 | 919 | optional 920 | 921 | 922 | kn-IN.lproj/SAKSDKStrings.strings 923 | 924 | hash 925 | 926 | VY1GjJJxpA6pkyOpKTMX8eeskDY= 927 | 928 | hash2 929 | 930 | B54dyiu3RfuSaOQCldtFt6I4ckd+3MvWef+5whlfVak= 931 | 932 | optional 933 | 934 | 935 | ko.lproj/SAKSDKStrings.strings 936 | 937 | hash 938 | 939 | 6ujUrFF6eVrFRsYYckTuaUa3li8= 940 | 941 | hash2 942 | 943 | 6VICCSXSgTYkeu2Aryf1RqANmC20/W3RfgmdkTIkkhQ= 944 | 945 | optional 946 | 947 | 948 | ml-IN.lproj/SAKSDKStrings.strings 949 | 950 | hash 951 | 952 | gtyEOBFlCcaLnSGnVWeQRoLvWcI= 953 | 954 | hash2 955 | 956 | D/dhj8YEQzZifyXBpp2ouCaVv7OgkUEprSSoo0CmxKc= 957 | 958 | optional 959 | 960 | 961 | mr-IN.lproj/SAKSDKStrings.strings 962 | 963 | hash 964 | 965 | 4utHFRpCQVZ0ujAH38M8TKlfWnc= 966 | 967 | hash2 968 | 969 | UV21Sb6BfsrfIF7mvd+aTRTYLYzabG9rEYjhQLrVWhA= 970 | 971 | optional 972 | 973 | 974 | ms-MY.lproj/SAKSDKStrings.strings 975 | 976 | hash 977 | 978 | pCuA1r+Sgb+xr80nTRtpUJkUhUQ= 979 | 980 | hash2 981 | 982 | JzjlHxnDyoVs7a6hNSgvw+2mOAOyMfPYMM/NJHSkUIQ= 983 | 984 | optional 985 | 986 | 987 | nb.lproj/SAKSDKStrings.strings 988 | 989 | hash 990 | 991 | vdSO8PSRXaVTCAhM8Kqbs+u6qUE= 992 | 993 | hash2 994 | 995 | dqrrTDR/2NHfFqc4AAn8jEt8o14CPTEVWD9Ku+zP5Dw= 996 | 997 | optional 998 | 999 | 1000 | nl.lproj/SAKSDKStrings.strings 1001 | 1002 | hash 1003 | 1004 | PjQWUqTfKGya8/81jegpDuDe32I= 1005 | 1006 | hash2 1007 | 1008 | UM3u17FF72FgegThdCB5gRogh3NIQeub+II9TR3Fv2Y= 1009 | 1010 | optional 1011 | 1012 | 1013 | pa-IN.lproj/SAKSDKStrings.strings 1014 | 1015 | hash 1016 | 1017 | Nt7L41AVcS+i74UAHa6oQ3MGHYE= 1018 | 1019 | hash2 1020 | 1021 | ijq3w2cR2BQBM3BSoI2QdKLOMKHDKsncOvWzhBtCc8U= 1022 | 1023 | optional 1024 | 1025 | 1026 | pl.lproj/SAKSDKStrings.strings 1027 | 1028 | hash 1029 | 1030 | CrZMf1YPbtvU5SeoegA+p54M0kQ= 1031 | 1032 | hash2 1033 | 1034 | 2V10XkylWZV53vcz8IBKWeNcQuczlj4aQObs8P9+QTU= 1035 | 1036 | optional 1037 | 1038 | 1039 | pt-PT.lproj/SAKSDKStrings.strings 1040 | 1041 | hash 1042 | 1043 | HW0eIAtBJwBHgUjPfe8fOysK89E= 1044 | 1045 | hash2 1046 | 1047 | gf4hX1zqcWD8AS60x+/r1JTHIplwMoRbf0xwPbpzO+E= 1048 | 1049 | optional 1050 | 1051 | 1052 | pt.lproj/SAKSDKStrings.strings 1053 | 1054 | hash 1055 | 1056 | 8xMclcKKqA/hU3vaa1Ne5f/nmjE= 1057 | 1058 | hash2 1059 | 1060 | e9cywUxJi43ioHaDBDnY/XtHVjz1GgLt4NFPUefBOCI= 1061 | 1062 | optional 1063 | 1064 | 1065 | ro.lproj/SAKSDKStrings.strings 1066 | 1067 | hash 1068 | 1069 | TGYl2Ry3TPbD8FIc7fNFFkl7zdA= 1070 | 1071 | hash2 1072 | 1073 | uQsNqxboNbaNhF7/wcKft7ajvQu3oH5R8a3PzsyxSNA= 1074 | 1075 | optional 1076 | 1077 | 1078 | ru.lproj/SAKSDKStrings.strings 1079 | 1080 | hash 1081 | 1082 | 4/IvpI+kLztJ/KJLIEcWSzGcf2Y= 1083 | 1084 | hash2 1085 | 1086 | nR/2WlqFH5i63Lge1ApcoUWbSszVjcLAJUUS4fKqA5o= 1087 | 1088 | optional 1089 | 1090 | 1091 | sv.lproj/SAKSDKStrings.strings 1092 | 1093 | hash 1094 | 1095 | ihuU+iD1a91Ec7937rlH/AIlBqQ= 1096 | 1097 | hash2 1098 | 1099 | 7nzXrqy85ZwJx/5XtQ8uQxJaeiA87q8L57HchksYMX0= 1100 | 1101 | optional 1102 | 1103 | 1104 | ta-IN.lproj/SAKSDKStrings.strings 1105 | 1106 | hash 1107 | 1108 | DBYa/LH0mBfRNX1gpQlV7NpfM3M= 1109 | 1110 | hash2 1111 | 1112 | 8Tsy/AxPhLs2G0P59aFAfVBJk21Mfu5JeAUYC9i2aEU= 1113 | 1114 | optional 1115 | 1116 | 1117 | te-IN.lproj/SAKSDKStrings.strings 1118 | 1119 | hash 1120 | 1121 | WWFCmgM45eJOfCAKqtvgPB08rZ0= 1122 | 1123 | hash2 1124 | 1125 | 1p0RunnEPyYJ1iFgvAZRdFS3G+oEHYXUa6M7iiJfZmQ= 1126 | 1127 | optional 1128 | 1129 | 1130 | th-TH.lproj/SAKSDKStrings.strings 1131 | 1132 | hash 1133 | 1134 | loRex8QwWDYT7C830ImxO5zoZWc= 1135 | 1136 | hash2 1137 | 1138 | 1rmKiJlcGlyBhPwJB2SZyReTAx2Wu1jIJqs4NagGePw= 1139 | 1140 | optional 1141 | 1142 | 1143 | tr.lproj/SAKSDKStrings.strings 1144 | 1145 | hash 1146 | 1147 | UBx4UkQSQVnxb1Bk7JEPtdG6xDg= 1148 | 1149 | hash2 1150 | 1151 | +jRY0iUfzMYFsVcS7oh0CApb4m9ACU1klFHwLhVinqo= 1152 | 1153 | optional 1154 | 1155 | 1156 | ur-PK.lproj/SAKSDKStrings.strings 1157 | 1158 | hash 1159 | 1160 | /5VRJjWQaiftZJqO/OCQ+WjNNjs= 1161 | 1162 | hash2 1163 | 1164 | NcsjEg0FCWUBoFJioAPfAqncWpZheVbxzx3G6QVx9aY= 1165 | 1166 | optional 1167 | 1168 | 1169 | vi-VN.lproj/SAKSDKStrings.strings 1170 | 1171 | hash 1172 | 1173 | lnOsAm1nT2lU+pofVB1BFHYL5to= 1174 | 1175 | hash2 1176 | 1177 | 8pPV2+ebtxrENYr7rNDZHKRO4452ew2KtOQzMO4KAmw= 1178 | 1179 | optional 1180 | 1181 | 1182 | zh-Hans.lproj/SAKSDKStrings.strings 1183 | 1184 | hash 1185 | 1186 | GYS1w0uSk/sZS9DWJbz6r6y6fxk= 1187 | 1188 | hash2 1189 | 1190 | 6oh8pcAZp39+zLbE1WHRziHi1Sx7X6qIdK4p2+94F5I= 1191 | 1192 | optional 1193 | 1194 | 1195 | zh-Hant.lproj/SAKSDKStrings.strings 1196 | 1197 | hash 1198 | 1199 | khExdJjT1A9IdE62nWh09Y5sBqc= 1200 | 1201 | hash2 1202 | 1203 | yhLsc43NJQmrCPsMJleAKaGTNmKLWOy31rgJkWW3l6A= 1204 | 1205 | optional 1206 | 1207 | 1208 | 1209 | rules 1210 | 1211 | ^.* 1212 | 1213 | ^.*\.lproj/ 1214 | 1215 | optional 1216 | 1217 | weight 1218 | 1000 1219 | 1220 | ^.*\.lproj/locversion.plist$ 1221 | 1222 | omit 1223 | 1224 | weight 1225 | 1100 1226 | 1227 | ^Base\.lproj/ 1228 | 1229 | weight 1230 | 1010 1231 | 1232 | ^version.plist$ 1233 | 1234 | 1235 | rules2 1236 | 1237 | .*\.dSYM($|/) 1238 | 1239 | weight 1240 | 11 1241 | 1242 | ^(.*/)?\.DS_Store$ 1243 | 1244 | omit 1245 | 1246 | weight 1247 | 2000 1248 | 1249 | ^.* 1250 | 1251 | ^.*\.lproj/ 1252 | 1253 | optional 1254 | 1255 | weight 1256 | 1000 1257 | 1258 | ^.*\.lproj/locversion.plist$ 1259 | 1260 | omit 1261 | 1262 | weight 1263 | 1100 1264 | 1265 | ^Base\.lproj/ 1266 | 1267 | weight 1268 | 1010 1269 | 1270 | ^Info\.plist$ 1271 | 1272 | omit 1273 | 1274 | weight 1275 | 20 1276 | 1277 | ^PkgInfo$ 1278 | 1279 | omit 1280 | 1281 | weight 1282 | 20 1283 | 1284 | ^embedded\.provisionprofile$ 1285 | 1286 | weight 1287 | 20 1288 | 1289 | ^version\.plist$ 1290 | 1291 | weight 1292 | 20 1293 | 1294 | 1295 | 1296 | 1297 | -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ar.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ar.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/bn-BD.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/bn-BD.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/bn-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/bn-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/da.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/da.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/de.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/de.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/el.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/el.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/en-GB.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/en-GB.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/en.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/en.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-AR.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-AR.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-ES.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-ES.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-MX.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es-MX.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/es.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fi.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fi.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fil-PH.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fil-PH.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fr.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/fr.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/gu-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/gu-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/hi-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/hi-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/id.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/id.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/it.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/it.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ja.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ja.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/kn-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/kn-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ko.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ko.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ml-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ml-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/mr-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/mr-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ms-MY.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ms-MY.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/nb.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/nb.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/nl.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/nl.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pa-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pa-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pl.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pl.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pt-PT.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pt-PT.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pt.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/pt.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ro.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ro.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ru.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ru.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/sv.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/sv.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ta-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ta-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/te-IN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/te-IN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/th-TH.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/th-TH.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/tr.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/tr.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ur-PK.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/ur-PK.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/vi-VN.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/vi-VN.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/zh-Hans.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/zh-Hans.lproj/SAKSDKStrings.strings -------------------------------------------------------------------------------- /SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/zh-Hant.lproj/SAKSDKStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/ad-kit-ios/477fdc7d0dc62adfc570a3133b9d109350d21976/SAKSDK.xcframework/ios-i386_x86_64-simulator/SAKSDK.framework/zh-Hant.lproj/SAKSDKStrings.strings --------------------------------------------------------------------------------