Skip to content

Commit

Permalink
upgrade to radar ios sdk 3.4 (#21)
Browse files Browse the repository at this point in the history
* upgrade to radar ios sdk 3.4

* package changes

* package changes

* fix header ref
  • Loading branch information
Brett Guenther authored Jul 19, 2022
1 parent 1149c09 commit 94b02cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "radarlabs/radar-sdk-ios" ~> 3.2
github "radarlabs/radar-sdk-ios" ~> 3.4
github "mparticle/mparticle-apple-sdk" ~> 8.0
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
.upToNextMajor(from: "8.0.0")),
.package(name: "RadarSDK",
url: "https://github.com/radarlabs/radar-sdk-ios",
.upToNextMajor(from: "3.2.0")),
.upToNextMinor(from: "3.4.0")),
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions mParticle-Radar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'mParticle-Radar'
s.version = '8.0.4'
s.version = '8.0.5'
s.summary = 'Radar integration for mParticle'
s.description = <<-DESC
This is the Radar integration for mParticle.
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.ios.source_files = 'mParticle-Radar/*.{h,m,mm}'
s.ios.frameworks = 'CoreLocation'
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.0'
s.ios.dependency 'RadarSDK', '~> 3.2.0'
s.ios.dependency 'RadarSDK', '~> 3.4.4'
s.ios.pod_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/RadarSDK/**',
'OTHER_LDFLAGS' => '$(inherited) -framework "RadarSDK"',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
Expand Down
6 changes: 3 additions & 3 deletions mParticle-Radar/MPKitRadar.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#import "MPKitRadar.h"
#if defined(__has_include) && __has_include(<RadarSDK/RadarSDK.h>)
#import <RadarSDK/RadarSDK.h>
#if defined(__has_include) && __has_include(<RadarSDK/Include/Radar.h>)
#import <RadarSDK/Include/Radar.h>
#else
#import "RadarSDK.h"
#import "Radar.h"
#endif

NSString *const KEY_PUBLISHABLE_KEY = @"publishableKey";
Expand Down

0 comments on commit 94b02cf

Please sign in to comment.