├── .gitignore ├── GNAdDFPBannerMediationAdapter └── Framework │ └── GNAdDFPBannerMediationAdapter.framework │ ├── GNAdDFPBannerMediationAdapter │ ├── Headers │ └── GNAdDFPBannerMediationAdapter.h │ ├── Info.plist │ └── Modules │ └── module.modulemap ├── GNAdDFPFullscreenInterstitialMediationAdapter └── Framework │ └── GNAdDFPFullscreenInterstitialMediationAdapter.framework │ ├── GNAdDFPFullscreenInterstitialMediationAdapter │ ├── Headers │ └── GNAdDFPFullscreenInterstitialMediationAdapter.h │ ├── Info.plist │ └── Modules │ └── module.modulemap ├── GNAdDFPRewardMediationAdapter └── Framework │ └── GNAdDFPRewardMediationAdapter.framework │ ├── GNAdDFPRewardMediationAdapter │ ├── Headers │ └── GNAdDFPRewardMediationAdapter.h │ ├── Info.plist │ └── Modules │ └── module.modulemap ├── GNAdGoogleMediationAdapter └── Framework │ └── GNAdGoogleMediationAdapter.xcframework │ ├── Info.plist │ ├── ios-arm64 │ └── GNAdGoogleMediationAdapter.framework │ │ ├── GNAdGoogleMediationAdapter │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ └── GNAdGoogleMediationAdapter.framework │ ├── GNAdGoogleMediationAdapter │ └── Info.plist ├── GNAdMAXMediationAdapter └── Framework │ └── GNAdMAXMediationAdapter.xcframework │ ├── Info.plist │ ├── ios-arm64 │ └── GNAdMAXMediationAdapter.framework │ │ ├── GNAdMAXMediationAdapter │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ └── GNAdMAXMediationAdapter.framework │ ├── GNAdMAXMediationAdapter │ └── Info.plist ├── GNAdSDK ├── Framework │ └── GNAdSDK.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ └── GNAdSDK.framework │ │ │ ├── GNAdSDK │ │ │ ├── Headers │ │ │ ├── GNAdCustomEventBanner.h │ │ │ ├── GNAdCustomEventBannerDelegate.h │ │ │ ├── GNAdSDK.h │ │ │ ├── GNAdVideo.h │ │ │ ├── GNAdView.h │ │ │ ├── GNAdViewRequest.h │ │ │ ├── GNInterstitial.h │ │ │ ├── GNNativeAd.h │ │ │ ├── GNNativeAdRequest.h │ │ │ ├── GNRequest.h │ │ │ ├── GNSAdConstants.h │ │ │ ├── GNSAdNetworkAdapterProtocol.h │ │ │ ├── GNSAdNetworkConnectorProtocol.h │ │ │ ├── GNSAdNetworkExtraParams.h │ │ │ ├── GNSAdNetworkExtras.h │ │ │ ├── GNSAdNetworkParam.h │ │ │ ├── GNSAdReward.h │ │ │ ├── GNSFullscreenInterstitialAd.h │ │ │ ├── GNSFullscreenInterstitialAdDelegate.h │ │ │ ├── GNSFullscreenInterstitialAdNetworkParam.h │ │ │ ├── GNSInternalAVPlayerView.h │ │ │ ├── GNSInternalAVPlayerViewController.h │ │ │ ├── GNSInternalVASTPlayer.h │ │ │ ├── GNSInternalVASTXmlParser.h │ │ │ ├── GNSLogManager.h │ │ │ ├── GNSMediationAdRequest.h │ │ │ ├── GNSNativeVideoPlayerView.h │ │ │ ├── GNSRequest.h │ │ │ ├── GNSRewardVideoAd.h │ │ │ ├── GNSRewardVideoAdDelegate.h │ │ │ ├── GNSRewardVideoAdNetworkParam.h │ │ │ ├── GNSVideoPlayerView.h │ │ │ ├── GNSdkMediation.h │ │ │ └── Log4GNAd.h │ │ │ └── Info.plist │ │ └── ios-arm64_x86_64-simulator │ │ └── GNAdSDK.framework │ │ ├── GNAdSDK │ │ ├── Headers │ │ ├── GNAdCustomEventBanner.h │ │ ├── GNAdCustomEventBannerDelegate.h │ │ ├── GNAdSDK.h │ │ ├── GNAdVideo.h │ │ ├── GNAdView.h │ │ ├── GNAdViewRequest.h │ │ ├── GNInterstitial.h │ │ ├── GNNativeAd.h │ │ ├── GNNativeAdRequest.h │ │ ├── GNRequest.h │ │ ├── GNSAdConstants.h │ │ ├── GNSAdNetworkAdapterProtocol.h │ │ ├── GNSAdNetworkConnectorProtocol.h │ │ ├── GNSAdNetworkExtraParams.h │ │ ├── GNSAdNetworkExtras.h │ │ ├── GNSAdNetworkParam.h │ │ ├── GNSAdReward.h │ │ ├── GNSFullscreenInterstitialAd.h │ │ ├── GNSFullscreenInterstitialAdDelegate.h │ │ ├── GNSFullscreenInterstitialAdNetworkParam.h │ │ ├── GNSInternalAVPlayerView.h │ │ ├── GNSInternalAVPlayerViewController.h │ │ ├── GNSInternalVASTPlayer.h │ │ ├── GNSInternalVASTXmlParser.h │ │ ├── GNSLogManager.h │ │ ├── GNSMediationAdRequest.h │ │ ├── GNSNativeVideoPlayerView.h │ │ ├── GNSRequest.h │ │ ├── GNSRewardVideoAd.h │ │ ├── GNSRewardVideoAdDelegate.h │ │ ├── GNSRewardVideoAdNetworkParam.h │ │ ├── GNSVideoPlayerView.h │ │ ├── GNSdkMediation.h │ │ └── Log4GNAd.h │ │ └── Info.plist └── libs │ ├── KissXML │ ├── Additions │ │ ├── DDXMLElementAdditions.h │ │ └── DDXMLElementAdditions.m │ ├── Categories │ │ ├── NSString+DDXML.h │ │ └── NSString+DDXML.m │ ├── DDXML.h │ ├── DDXMLDocument.h │ ├── DDXMLDocument.m │ ├── DDXMLElement.h │ ├── DDXMLElement.m │ ├── DDXMLNode.h │ ├── DDXMLNode.m │ └── Private │ │ └── DDXMLPrivate.h │ └── Reachability │ ├── Reachability.h │ └── Reachability.m ├── GNAdironSourceMediationAdapter ├── .gitignore └── Framework │ └── GNAdironSourceMediationAdapter.xcframework │ ├── Info.plist │ ├── ios-arm64 │ └── GNAdironSourceMediationAdapter.framework │ │ ├── GNAdironSourceMediationAdapter │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ └── GNAdironSourceMediationAdapter.framework │ ├── GNAdironSourceMediationAdapter │ └── Info.plist ├── Geniee-DFP-Mediation-Adapter.podspec ├── Geniee-DFP-Mediation-Banner-Adapter.podspec ├── Geniee-DFP-Mediation-FullscreenInterstitial-Adapter.podspec ├── Geniee-Google-Mediation-Adapter.podspec ├── Geniee-MAX-Mediation-Adapter.podspec ├── Geniee-Mediation-AppLovin-Adapter.podspec ├── Geniee-Mediation-GoogleAdManager-Adapter.podspec ├── Geniee-Mediation-Line-Adapter.podspec ├── Geniee-Mediation-Maio-Adapter.podspec ├── Geniee-Mediation-Pangle-Adapter.podspec ├── Geniee-Mediation-UnityAds-Adapter.podspec ├── Geniee-Mediation-Vungle-Adapter.podspec ├── Geniee-iOS-SDK.podspec ├── Geniee-ironSource-Mediation-Adapter.podspec ├── LICENSE ├── README.md ├── adnetwork-adapters └── Framework │ ├── GenieeMediationAppLovin.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationAppLovin.framework │ │ │ ├── GenieeMediationAppLovin │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationAppLovin.framework │ │ ├── GenieeMediationAppLovin │ │ └── Info.plist │ ├── GenieeMediationGoogleAdManager.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationGoogleAdManager.framework │ │ │ ├── GenieeMediationGoogleAdManager │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationGoogleAdManager.framework │ │ ├── GenieeMediationGoogleAdManager │ │ └── Info.plist │ ├── GenieeMediationLine.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationLine.framework │ │ │ ├── GenieeMediationLine │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationLine.framework │ │ ├── GenieeMediationLine │ │ └── Info.plist │ ├── GenieeMediationMaio.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationMaio.framework │ │ │ ├── GenieeMediationMaio │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationMaio.framework │ │ ├── GenieeMediationMaio │ │ └── Info.plist │ ├── GenieeMediationPangle.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationPangle.framework │ │ │ ├── GenieeMediationPangle │ │ │ ├── Headers │ │ │ ├── GNSAdapterPangleBannerAd.h │ │ │ ├── GNSAdapterPangleFullscreenInterstitialAd.h │ │ │ └── GNSAdapterPangleRewardVideoAd.h │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationPangle.framework │ │ ├── GenieeMediationPangle │ │ ├── Headers │ │ ├── GNSAdapterPangleBannerAd.h │ │ ├── GNSAdapterPangleFullscreenInterstitialAd.h │ │ └── GNSAdapterPangleRewardVideoAd.h │ │ └── Info.plist │ ├── GenieeMediationUnityAds.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── GenieeMediationUnityAds.framework │ │ │ ├── GenieeMediationUnityAds │ │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ │ └── GenieeMediationUnityAds.framework │ │ ├── GenieeMediationUnityAds │ │ └── Info.plist │ └── GenieeMediationVungle.xcframework │ ├── Info.plist │ ├── ios-arm64 │ └── GenieeMediationVungle.framework │ │ ├── GenieeMediationVungle │ │ └── Info.plist │ └── ios-arm64_x86_64-simulator │ └── GenieeMediationVungle.framework │ ├── GenieeMediationVungle │ └── Info.plist ├── bannerMediation └── Pangle │ ├── GNSAdapterPangleBannerAd.h │ └── GNSAdapterPangleBannerAd.m ├── fullscreenMediation ├── AppLovin │ ├── GNSAdapterAppLovinFullscreenInterstitialAd.h │ └── GNSAdapterAppLovinFullscreenInterstitialAd.m ├── GoogleAdx │ ├── GNSAdapterGoogleAdxFullscreenInterstitialAd.h │ └── GNSAdapterGoogleAdxFullscreenInterstitialAd.m ├── Imobile │ ├── GNSAdapterImobileFullscreenInterstitialAd.h │ └── GNSAdapterImobileFullscreenInterstitialAd.m ├── Maio │ ├── GNSAdapterMaioFullscreenInterstitialAd.h │ └── GNSAdapterMaioFullscreenInterstitialAd.m ├── Nend │ ├── GNSAdapterNendFullscreenInterstitialAd.h │ └── GNSAdapterNendFullscreenInterstitialAd.m ├── Pangle │ ├── GNSAdapterPangleFullscreenInterstitialAd.h │ └── GNSAdapterPangleFullscreenInterstitialAd.m ├── Tapjoy │ ├── GNSAdapterTapjoyFullscreenInterstitialAd.h │ └── GNSAdapterTapjoyFullscreenInterstitialAd.m ├── UnityAds │ ├── GNSAdapterUnityAdsFullscreenInterstitialAd.h │ └── GNSAdapterUnityAdsFullscreenInterstitialAd.m ├── Vungle │ ├── GNSAdapterVungleFullscreenInterstitialAd.h │ └── GNSAdapterVungleFullscreenInterstitialAd.m └── Zucks │ ├── GNSAdapterZucksFullscreenInterstitialAd.h │ └── GNSAdapterZucksFullscreenInterstitialAd.m ├── manuals ├── SDK-Manual-en.md └── SDK-Manual-ja.md ├── rewardMediation ├── GoogleAdx │ ├── GNSAdapterGoogleAdxRewardVideoAd.h │ └── GNSAdapterGoogleAdxRewardVideoAd.m └── Pangle │ ├── GNSAdapterPangleRewardVideoAd.h │ └── GNSAdapterPangleRewardVideoAd.m ├── sample └── use_cocoapods │ ├── objectivec │ ├── Podfile │ ├── Podfile.lock │ ├── objectivec.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── objectivec.xcworkspace │ │ └── contents.xcworkspacedata │ └── objectivec │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── appicon-60@2x.png │ │ │ ├── appicon-60@3x.png │ │ │ ├── appicon-76.png │ │ │ ├── appicon-76@2x.png │ │ │ └── appicon-83.5@2x.png │ │ └── Contents.json │ │ ├── Banner │ │ ├── BannerViewController.h │ │ └── BannerViewController.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Common │ │ ├── DataStructure │ │ │ ├── GNQueue.h │ │ │ └── GNQueue.m │ │ ├── Models │ │ │ ├── MyCellData.h │ │ │ └── MyCellData.m │ │ ├── Toast │ │ │ ├── UIView+Toast.h │ │ │ └── UIView+Toast.m │ │ ├── Util.h │ │ └── Util.m │ │ ├── FullscreenInterstitial │ │ ├── Base.lproj │ │ │ └── FullscreenInterstitial.storyboard │ │ ├── FullscreenInterstitialViewController.h │ │ └── FullscreenInterstitialViewController.m │ │ ├── GoogleBanner │ │ ├── Base.lproj │ │ │ └── GoogleBanner.storyboard │ │ ├── GoogleBannerViewController.h │ │ └── GoogleBannerViewController.m │ │ ├── GoogleFullscreenInterstitial │ │ ├── Base.lproj │ │ │ └── GoogleFullscreenInterstitial.storyboard │ │ ├── GoogleFullscreenInterstitialViewController.h │ │ └── GoogleFullscreenInterstitialViewController.m │ │ ├── GoogleReward │ │ ├── Base.lproj │ │ │ └── GoogleReward.storyboard │ │ ├── GoogleRewardViewController.h │ │ └── GoogleRewardViewController.m │ │ ├── Info.plist │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── MultipleBanner │ │ ├── Base.lproj │ │ │ └── MultipleBanner.storyboard │ │ ├── MultipleBannerViewController.h │ │ ├── MultipleBannerViewController.m │ │ ├── TableViewCell.h │ │ └── TableViewCell.m │ │ ├── NativeAd │ │ ├── Base.lproj │ │ │ └── Native.storyboard │ │ ├── ImageTableViewCell.h │ │ ├── ImageTableViewCell.m │ │ ├── ImageTableViewController.h │ │ ├── ImageTableViewController.m │ │ ├── NativeMainViewController.h │ │ ├── NativeMainViewController.m │ │ ├── SimpleUIButton.h │ │ ├── SimpleUIButton.m │ │ ├── SimpleViewController.h │ │ ├── SimpleViewController.m │ │ ├── VideoTableViewCell.h │ │ ├── VideoTableViewCell.m │ │ ├── VideoTableViewController.h │ │ └── VideoTableViewController.m │ │ ├── RewardVideo │ │ ├── Base.lproj │ │ │ └── RewardVideo.storyboard │ │ ├── RewardVideoViewController.h │ │ └── RewardVideoViewController.m │ │ ├── SampleInterstitial │ │ ├── SampleInterstitialViewController.h │ │ └── SampleInterstitialViewController.m │ │ ├── SampleVideo │ │ ├── SampleVideoViewController.h │ │ └── SampleVideoViewController.m │ │ ├── do_not_erase.swift │ │ └── main.m │ └── swift │ ├── Podfile │ ├── Podfile.lock │ ├── swift.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── swift.xcworkspace │ └── contents.xcworkspacedata │ └── swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appicon-60@2x.png │ │ ├── appicon-60@3x.png │ │ ├── appicon-76.png │ │ ├── appicon-76@2x.png │ │ └── appicon-83.5@2x.png │ └── Contents.json │ ├── Banner │ ├── BannerViewController.swift │ └── Base.lproj │ │ └── Banner.storyboard │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Common │ ├── DataStructure │ │ └── GNQueue.swift │ ├── Models │ │ └── MyCellData.swift │ └── Util.swift │ ├── FullscreenInterstitial │ ├── Base.lproj │ │ └── FullscreenInterstitial.storyboard │ └── FullscreenInterstitialViewController.swift │ ├── GoogleBanner │ ├── Base.lproj │ │ └── GoogleBanner.storyboard │ └── GoogleBannerViewController.swift │ ├── GoogleFullscreenInterstitial │ ├── Base.lproj │ │ └── GoogleFullscreenInterstitial.storyboard │ └── GoogleFullscreenInterstitialViewController.swift │ ├── GoogleReward │ ├── Base.lproj │ │ └── GoogleReward.storyboard │ └── GoogleRewardViewController.swift │ ├── Info.plist │ ├── MainViewController.swift │ ├── MultipleBanner │ ├── Base.lproj │ │ └── MultipleBanner.storyboard │ ├── MultipleBannerViewController.swift │ └── TableViewCell.swift │ ├── NativeAd │ ├── Base.lproj │ │ └── Native.storyboard │ ├── ImageTableViewCell.swift │ ├── ImageTableViewController.swift │ ├── NativeMainViewController.swift │ ├── SimpleUIButton.swift │ ├── SimpleViewController.swift │ ├── VideoTableViewCell.swift │ └── VideoTableViewController.swift │ ├── RewardVideo │ ├── Base.lproj │ │ └── RewardVideo.storyboard │ └── RewardVideoViewController.swift │ ├── SceneDelegate.swift │ └── swift-Bridging-Header.h └── sdk-man_english ├── sdk_man01.png ├── sdk_man02.png └── sdk_man03.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/GNAdDFPBannerMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/GNAdDFPBannerMediationAdapter -------------------------------------------------------------------------------- /GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Headers/GNAdDFPBannerMediationAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Headers/GNAdDFPBannerMediationAdapter.h -------------------------------------------------------------------------------- /GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPBannerMediationAdapter/Framework/GNAdDFPBannerMediationAdapter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/GNAdDFPFullscreenInterstitialMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/GNAdDFPFullscreenInterstitialMediationAdapter -------------------------------------------------------------------------------- /GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Headers/GNAdDFPFullscreenInterstitialMediationAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Headers/GNAdDFPFullscreenInterstitialMediationAdapter.h -------------------------------------------------------------------------------- /GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPFullscreenInterstitialMediationAdapter/Framework/GNAdDFPFullscreenInterstitialMediationAdapter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/GNAdDFPRewardMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/GNAdDFPRewardMediationAdapter -------------------------------------------------------------------------------- /GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Headers/GNAdDFPRewardMediationAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Headers/GNAdDFPRewardMediationAdapter.h -------------------------------------------------------------------------------- /GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdDFPRewardMediationAdapter/Framework/GNAdDFPRewardMediationAdapter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/Info.plist -------------------------------------------------------------------------------- /GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64/GNAdGoogleMediationAdapter.framework/GNAdGoogleMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64/GNAdGoogleMediationAdapter.framework/GNAdGoogleMediationAdapter -------------------------------------------------------------------------------- /GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64/GNAdGoogleMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64/GNAdGoogleMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdGoogleMediationAdapter.framework/GNAdGoogleMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdGoogleMediationAdapter.framework/GNAdGoogleMediationAdapter -------------------------------------------------------------------------------- /GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdGoogleMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdGoogleMediationAdapter/Framework/GNAdGoogleMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdGoogleMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/Info.plist -------------------------------------------------------------------------------- /GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64/GNAdMAXMediationAdapter.framework/GNAdMAXMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64/GNAdMAXMediationAdapter.framework/GNAdMAXMediationAdapter -------------------------------------------------------------------------------- /GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64/GNAdMAXMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64/GNAdMAXMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdMAXMediationAdapter.framework/GNAdMAXMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdMAXMediationAdapter.framework/GNAdMAXMediationAdapter -------------------------------------------------------------------------------- /GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdMAXMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdMAXMediationAdapter/Framework/GNAdMAXMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdMAXMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/Info.plist -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/GNAdSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/GNAdSDK -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdCustomEventBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdCustomEventBanner.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdCustomEventBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdCustomEventBannerDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdSDK.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdVideo.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdViewRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNAdViewRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNInterstitial.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNNativeAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNNativeAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNNativeAdRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdConstants.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkExtraParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkExtraParams.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkExtras.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdReward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSAdReward.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalAVPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalAVPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalAVPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalAVPlayerViewController.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalVASTPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalVASTPlayer.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalVASTXmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSInternalVASTXmlParser.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSLogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSLogManager.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSMediationAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSMediationAdRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSNativeVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSNativeVideoPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAdDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSRewardVideoAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSVideoPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSdkMediation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/GNSdkMediation.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/Log4GNAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Headers/Log4GNAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64/GNAdSDK.framework/Info.plist -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/GNAdSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/GNAdSDK -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdCustomEventBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdCustomEventBanner.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdCustomEventBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdCustomEventBannerDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdSDK.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdVideo.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdViewRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNAdViewRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNInterstitial.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNNativeAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNNativeAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNNativeAdRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdConstants.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkExtraParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkExtraParams.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkExtras.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdReward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSAdReward.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSFullscreenInterstitialAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalAVPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalAVPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalAVPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalAVPlayerViewController.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalVASTPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalVASTPlayer.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalVASTXmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSInternalVASTXmlParser.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSLogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSLogManager.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSMediationAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSMediationAdRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSNativeVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSNativeVideoPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRequest.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAdDelegate.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAdNetworkParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSRewardVideoAdNetworkParam.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSVideoPlayerView.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSdkMediation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/GNSdkMediation.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/Log4GNAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Headers/Log4GNAd.h -------------------------------------------------------------------------------- /GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/Framework/GNAdSDK.xcframework/ios-arm64_x86_64-simulator/GNAdSDK.framework/Info.plist -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/Additions/DDXMLElementAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/Additions/DDXMLElementAdditions.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/Additions/DDXMLElementAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/Additions/DDXMLElementAdditions.m -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/Categories/NSString+DDXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/Categories/NSString+DDXML.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/Categories/NSString+DDXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/Categories/NSString+DDXML.m -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXML.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLDocument.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLDocument.m -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLElement.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLElement.m -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLNode.h -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/DDXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/DDXMLNode.m -------------------------------------------------------------------------------- /GNAdSDK/libs/KissXML/Private/DDXMLPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/KissXML/Private/DDXMLPrivate.h -------------------------------------------------------------------------------- /GNAdSDK/libs/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/Reachability/Reachability.h -------------------------------------------------------------------------------- /GNAdSDK/libs/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdSDK/libs/Reachability/Reachability.m -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/.gitignore -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/Info.plist -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64/GNAdironSourceMediationAdapter.framework/GNAdironSourceMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64/GNAdironSourceMediationAdapter.framework/GNAdironSourceMediationAdapter -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64/GNAdironSourceMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64/GNAdironSourceMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdironSourceMediationAdapter.framework/GNAdironSourceMediationAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdironSourceMediationAdapter.framework/GNAdironSourceMediationAdapter -------------------------------------------------------------------------------- /GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdironSourceMediationAdapter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/GNAdironSourceMediationAdapter/Framework/GNAdironSourceMediationAdapter.xcframework/ios-arm64_x86_64-simulator/GNAdironSourceMediationAdapter.framework/Info.plist -------------------------------------------------------------------------------- /Geniee-DFP-Mediation-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-DFP-Mediation-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-DFP-Mediation-Banner-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-DFP-Mediation-Banner-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-DFP-Mediation-FullscreenInterstitial-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-DFP-Mediation-FullscreenInterstitial-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Google-Mediation-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Google-Mediation-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-MAX-Mediation-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-MAX-Mediation-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-AppLovin-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-AppLovin-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-GoogleAdManager-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-GoogleAdManager-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-Line-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-Line-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-Maio-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-Maio-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-Pangle-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-Pangle-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-UnityAds-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-UnityAds-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-Mediation-Vungle-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-Mediation-Vungle-Adapter.podspec -------------------------------------------------------------------------------- /Geniee-iOS-SDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-iOS-SDK.podspec -------------------------------------------------------------------------------- /Geniee-ironSource-Mediation-Adapter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/Geniee-ironSource-Mediation-Adapter.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/README.md -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64/GenieeMediationAppLovin.framework/GenieeMediationAppLovin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64/GenieeMediationAppLovin.framework/GenieeMediationAppLovin -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64/GenieeMediationAppLovin.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64/GenieeMediationAppLovin.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64_x86_64-simulator/GenieeMediationAppLovin.framework/GenieeMediationAppLovin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64_x86_64-simulator/GenieeMediationAppLovin.framework/GenieeMediationAppLovin -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64_x86_64-simulator/GenieeMediationAppLovin.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationAppLovin.xcframework/ios-arm64_x86_64-simulator/GenieeMediationAppLovin.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64/GenieeMediationGoogleAdManager.framework/GenieeMediationGoogleAdManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64/GenieeMediationGoogleAdManager.framework/GenieeMediationGoogleAdManager -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64/GenieeMediationGoogleAdManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64/GenieeMediationGoogleAdManager.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64_x86_64-simulator/GenieeMediationGoogleAdManager.framework/GenieeMediationGoogleAdManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64_x86_64-simulator/GenieeMediationGoogleAdManager.framework/GenieeMediationGoogleAdManager -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64_x86_64-simulator/GenieeMediationGoogleAdManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationGoogleAdManager.xcframework/ios-arm64_x86_64-simulator/GenieeMediationGoogleAdManager.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationLine.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationLine.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64/GenieeMediationLine.framework/GenieeMediationLine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64/GenieeMediationLine.framework/GenieeMediationLine -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64/GenieeMediationLine.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64/GenieeMediationLine.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64_x86_64-simulator/GenieeMediationLine.framework/GenieeMediationLine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64_x86_64-simulator/GenieeMediationLine.framework/GenieeMediationLine -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64_x86_64-simulator/GenieeMediationLine.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationLine.xcframework/ios-arm64_x86_64-simulator/GenieeMediationLine.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64/GenieeMediationMaio.framework/GenieeMediationMaio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64/GenieeMediationMaio.framework/GenieeMediationMaio -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64/GenieeMediationMaio.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64/GenieeMediationMaio.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64_x86_64-simulator/GenieeMediationMaio.framework/GenieeMediationMaio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64_x86_64-simulator/GenieeMediationMaio.framework/GenieeMediationMaio -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64_x86_64-simulator/GenieeMediationMaio.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationMaio.xcframework/ios-arm64_x86_64-simulator/GenieeMediationMaio.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/GenieeMediationPangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/GenieeMediationPangle -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleBannerAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleBannerAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Headers/GNSAdapterPangleRewardVideoAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64/GenieeMediationPangle.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/GenieeMediationPangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/GenieeMediationPangle -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleBannerAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleBannerAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Headers/GNSAdapterPangleRewardVideoAd.h -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationPangle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationPangle.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64/GenieeMediationUnityAds.framework/GenieeMediationUnityAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64/GenieeMediationUnityAds.framework/GenieeMediationUnityAds -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64/GenieeMediationUnityAds.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64/GenieeMediationUnityAds.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64_x86_64-simulator/GenieeMediationUnityAds.framework/GenieeMediationUnityAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64_x86_64-simulator/GenieeMediationUnityAds.framework/GenieeMediationUnityAds -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64_x86_64-simulator/GenieeMediationUnityAds.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationUnityAds.xcframework/ios-arm64_x86_64-simulator/GenieeMediationUnityAds.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64/GenieeMediationVungle.framework/GenieeMediationVungle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64/GenieeMediationVungle.framework/GenieeMediationVungle -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64/GenieeMediationVungle.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64/GenieeMediationVungle.framework/Info.plist -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationVungle.framework/GenieeMediationVungle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationVungle.framework/GenieeMediationVungle -------------------------------------------------------------------------------- /adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationVungle.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/adnetwork-adapters/Framework/GenieeMediationVungle.xcframework/ios-arm64_x86_64-simulator/GenieeMediationVungle.framework/Info.plist -------------------------------------------------------------------------------- /bannerMediation/Pangle/GNSAdapterPangleBannerAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/bannerMediation/Pangle/GNSAdapterPangleBannerAd.h -------------------------------------------------------------------------------- /bannerMediation/Pangle/GNSAdapterPangleBannerAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/bannerMediation/Pangle/GNSAdapterPangleBannerAd.m -------------------------------------------------------------------------------- /fullscreenMediation/AppLovin/GNSAdapterAppLovinFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/AppLovin/GNSAdapterAppLovinFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/AppLovin/GNSAdapterAppLovinFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/AppLovin/GNSAdapterAppLovinFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/GoogleAdx/GNSAdapterGoogleAdxFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/GoogleAdx/GNSAdapterGoogleAdxFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/GoogleAdx/GNSAdapterGoogleAdxFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/GoogleAdx/GNSAdapterGoogleAdxFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Imobile/GNSAdapterImobileFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Imobile/GNSAdapterImobileFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Imobile/GNSAdapterImobileFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Imobile/GNSAdapterImobileFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Maio/GNSAdapterMaioFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Maio/GNSAdapterMaioFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Maio/GNSAdapterMaioFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Maio/GNSAdapterMaioFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Nend/GNSAdapterNendFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Nend/GNSAdapterNendFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Nend/GNSAdapterNendFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Nend/GNSAdapterNendFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Pangle/GNSAdapterPangleFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Pangle/GNSAdapterPangleFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Pangle/GNSAdapterPangleFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Pangle/GNSAdapterPangleFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Tapjoy/GNSAdapterTapjoyFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Tapjoy/GNSAdapterTapjoyFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Tapjoy/GNSAdapterTapjoyFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Tapjoy/GNSAdapterTapjoyFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/UnityAds/GNSAdapterUnityAdsFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/UnityAds/GNSAdapterUnityAdsFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/UnityAds/GNSAdapterUnityAdsFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/UnityAds/GNSAdapterUnityAdsFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Vungle/GNSAdapterVungleFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Vungle/GNSAdapterVungleFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Vungle/GNSAdapterVungleFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Vungle/GNSAdapterVungleFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /fullscreenMediation/Zucks/GNSAdapterZucksFullscreenInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Zucks/GNSAdapterZucksFullscreenInterstitialAd.h -------------------------------------------------------------------------------- /fullscreenMediation/Zucks/GNSAdapterZucksFullscreenInterstitialAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/fullscreenMediation/Zucks/GNSAdapterZucksFullscreenInterstitialAd.m -------------------------------------------------------------------------------- /manuals/SDK-Manual-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/manuals/SDK-Manual-en.md -------------------------------------------------------------------------------- /manuals/SDK-Manual-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/manuals/SDK-Manual-ja.md -------------------------------------------------------------------------------- /rewardMediation/GoogleAdx/GNSAdapterGoogleAdxRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/rewardMediation/GoogleAdx/GNSAdapterGoogleAdxRewardVideoAd.h -------------------------------------------------------------------------------- /rewardMediation/GoogleAdx/GNSAdapterGoogleAdxRewardVideoAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/rewardMediation/GoogleAdx/GNSAdapterGoogleAdxRewardVideoAd.m -------------------------------------------------------------------------------- /rewardMediation/Pangle/GNSAdapterPangleRewardVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/rewardMediation/Pangle/GNSAdapterPangleRewardVideoAd.h -------------------------------------------------------------------------------- /rewardMediation/Pangle/GNSAdapterPangleRewardVideoAd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/rewardMediation/Pangle/GNSAdapterPangleRewardVideoAd.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/Podfile -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/Podfile.lock -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/AppDelegate.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/AppDelegate.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-76.png -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-76@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/AppIcon.appiconset/appicon-83.5@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Banner/BannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Banner/BannerViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Banner/BannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Banner/BannerViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/DataStructure/GNQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/DataStructure/GNQueue.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/DataStructure/GNQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/DataStructure/GNQueue.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Models/MyCellData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Models/MyCellData.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Models/MyCellData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Models/MyCellData.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Toast/UIView+Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Toast/UIView+Toast.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Toast/UIView+Toast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Toast/UIView+Toast.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Util.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Common/Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Common/Util.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/Base.lproj/FullscreenInterstitial.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/Base.lproj/FullscreenInterstitial.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/FullscreenInterstitialViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/FullscreenInterstitialViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/FullscreenInterstitialViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/FullscreenInterstitial/FullscreenInterstitialViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleBanner/Base.lproj/GoogleBanner.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleBanner/Base.lproj/GoogleBanner.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleBanner/GoogleBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleBanner/GoogleBannerViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleBanner/GoogleBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleBanner/GoogleBannerViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/Base.lproj/GoogleFullscreenInterstitial.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/Base.lproj/GoogleFullscreenInterstitial.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleReward/Base.lproj/GoogleReward.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleReward/Base.lproj/GoogleReward.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleReward/GoogleRewardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleReward/GoogleRewardViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/GoogleReward/GoogleRewardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/GoogleReward/GoogleRewardViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/Info.plist -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MainViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MainViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MultipleBanner/Base.lproj/MultipleBanner.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MultipleBanner/Base.lproj/MultipleBanner.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MultipleBanner/MultipleBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MultipleBanner/MultipleBannerViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MultipleBanner/MultipleBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MultipleBanner/MultipleBannerViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MultipleBanner/TableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MultipleBanner/TableViewCell.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/MultipleBanner/TableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/MultipleBanner/TableViewCell.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/Base.lproj/Native.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/Base.lproj/Native.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewCell.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewCell.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/ImageTableViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/NativeMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/NativeMainViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/NativeMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/NativeMainViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleUIButton.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleUIButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleUIButton.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/SimpleViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewCell.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewCell.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/NativeAd/VideoTableViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/RewardVideo/Base.lproj/RewardVideo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/RewardVideo/Base.lproj/RewardVideo.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/RewardVideo/RewardVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/RewardVideo/RewardVideoViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/RewardVideo/RewardVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/RewardVideo/RewardVideoViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/SampleInterstitial/SampleInterstitialViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/SampleInterstitial/SampleInterstitialViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/SampleInterstitial/SampleInterstitialViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/SampleInterstitial/SampleInterstitialViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/SampleVideo/SampleVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/SampleVideo/SampleVideoViewController.h -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/SampleVideo/SampleVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/SampleVideo/SampleVideoViewController.m -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/do_not_erase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/do_not_erase.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/objectivec/objectivec/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/objectivec/objectivec/main.m -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/Podfile -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/Podfile.lock -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/AppDelegate.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-76.png -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-76@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/AppIcon.appiconset/appicon-83.5@2x.png -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Banner/BannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Banner/BannerViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Banner/Base.lproj/Banner.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Banner/Base.lproj/Banner.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Common/DataStructure/GNQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Common/DataStructure/GNQueue.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Common/Models/MyCellData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Common/Models/MyCellData.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Common/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Common/Util.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/FullscreenInterstitial/Base.lproj/FullscreenInterstitial.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/FullscreenInterstitial/Base.lproj/FullscreenInterstitial.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/FullscreenInterstitial/FullscreenInterstitialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/FullscreenInterstitial/FullscreenInterstitialViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleBanner/Base.lproj/GoogleBanner.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleBanner/Base.lproj/GoogleBanner.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleBanner/GoogleBannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleBanner/GoogleBannerViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleFullscreenInterstitial/Base.lproj/GoogleFullscreenInterstitial.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleFullscreenInterstitial/Base.lproj/GoogleFullscreenInterstitial.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleFullscreenInterstitial/GoogleFullscreenInterstitialViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleReward/Base.lproj/GoogleReward.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleReward/Base.lproj/GoogleReward.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/GoogleReward/GoogleRewardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/GoogleReward/GoogleRewardViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/Info.plist -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/MainViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/MultipleBanner/Base.lproj/MultipleBanner.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/MultipleBanner/Base.lproj/MultipleBanner.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/MultipleBanner/MultipleBannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/MultipleBanner/MultipleBannerViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/MultipleBanner/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/MultipleBanner/TableViewCell.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/Base.lproj/Native.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/Base.lproj/Native.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/ImageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/ImageTableViewCell.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/ImageTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/ImageTableViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/NativeMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/NativeMainViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/SimpleUIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/SimpleUIButton.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/SimpleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/SimpleViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/VideoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/VideoTableViewCell.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/NativeAd/VideoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/NativeAd/VideoTableViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/RewardVideo/Base.lproj/RewardVideo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/RewardVideo/Base.lproj/RewardVideo.storyboard -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/RewardVideo/RewardVideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/RewardVideo/RewardVideoViewController.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/SceneDelegate.swift -------------------------------------------------------------------------------- /sample/use_cocoapods/swift/swift/swift-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sample/use_cocoapods/swift/swift/swift-Bridging-Header.h -------------------------------------------------------------------------------- /sdk-man_english/sdk_man01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sdk-man_english/sdk_man01.png -------------------------------------------------------------------------------- /sdk-man_english/sdk_man02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sdk-man_english/sdk_man02.png -------------------------------------------------------------------------------- /sdk-man_english/sdk_man03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniee-ssp/Geniee-iOS-SDK/HEAD/sdk-man_english/sdk_man03.png --------------------------------------------------------------------------------