diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index a75ede9..7781c38 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -10,7 +10,7 @@ on: - master schedule: # * is a special character in YAML so you have to quote this string - - cron: '*/1440 * * * *' + - cron: '1 * */1 * *' jobs: test: diff --git a/README.md b/README.md index 954fe3c..39a7581 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ This repository contains the [Radar](https://www.radar.io) integration for the [ 1. Add the kit dependency to your app's Podfile or Cartfile: ``` - pod 'mParticle-Radar', '~> 7.0' + pod 'mParticle-Radar', '~> 8.0.2' ``` OR ``` - github "mparticle-integrations/mparticle-apple-integration-radar" ~> 7.0 + github "mparticle-integrations/mparticle-apple-integration-radar" ~> 8.0.2 ``` 2. Follow the mParticle iOS SDK [quick-start](https://github.com/mParticle/mparticle-apple-sdk), then rebuild and launch your app, and verify that you see `"Included kits: { Radar }"` in your Xcode console diff --git a/mParticle-Radar.podspec b/mParticle-Radar.podspec index 030c8a6..f4a057f 100755 --- a/mParticle-Radar.podspec +++ b/mParticle-Radar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'mParticle-Radar' - s.version = '8.0.1' + s.version = '8.0.2' s.summary = 'Radar integration for mParticle' s.description = <<-DESC This is the Radar integration for mParticle. @@ -17,5 +17,6 @@ Pod::Spec.new do |s| s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.0' s.ios.dependency 'RadarSDK', '~> 3.0.0' s.ios.pod_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/RadarSDK/**', - 'OTHER_LDFLAGS' => '$(inherited) -framework "RadarSDK"' } + 'OTHER_LDFLAGS' => '$(inherited) -framework "RadarSDK"', + 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } end