Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 2429333

Browse files
authored
Merge pull request #337 from WideSpectrumComputing/master
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)
2 parents 225e16e + f47624c commit 2429333

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co
2525

2626
## Release Notes
2727

28+
**1.12.13**
29+
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)
30+
2831
**1.12.12**
2932
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)
3033

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Rollbar.svg)](https://img.shields.io/cocoapods/v/Rollbar.svg)
2-
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
1+
![Rollbar Logo](https://github.com/rollbar/rollbar-ios/blob/master/rollbar-logo.png)
32

43
# Rollbar for iOS and macOS
54

65
Objective-C & Swift library for crash reporting and logging with [Rollbar](https://rollbar.com). It works on iOS and macOS.
76

7+
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Rollbar.svg)](https://img.shields.io/cocoapods/v/Rollbar.svg)
8+
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
9+
10+
811
## Setup Instructions
912

1013
1. [Sign up for a Rollbar account](https://rollbar.com/signup)

Rollbar.podspec

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22

3-
s.version = "1.12.12"
3+
s.version = "1.12.13"
44
s.name = "Rollbar"
55
s.summary = "Objective-C library for crash reporting and logging with Rollbar. It works on iOS and macOS."
66
s.description = <<-DESC
@@ -19,6 +19,12 @@ Pod::Spec.new do |s|
1919
:tag => "v#{s.version}",
2020
:submodules => true
2121
}
22+
23+
s.pod_target_xcconfig = {'ONLY_ACTIVE_ARCH'=>"YES"}
24+
s.user_target_xcconfig = {'ONLY_ACTIVE_ARCH'=>"YES"}
25+
26+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
27+
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
2228

2329
s.source_files = 'KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}',
2430

Rollbar.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -4447,7 +4447,7 @@
44474447
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
44484448
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
44494449
COPY_PHASE_STRIP = NO;
4450-
CURRENT_PROJECT_VERSION = 1.12.12;
4450+
CURRENT_PROJECT_VERSION = 1.12.13;
44514451
DEFINES_MODULE = YES;
44524452
DEVELOPMENT_TEAM = LDX6L68VZJ;
44534453
ENABLE_BITCODE = YES;
@@ -4514,7 +4514,7 @@
45144514
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
45154515
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
45164516
COPY_PHASE_STRIP = YES;
4517-
CURRENT_PROJECT_VERSION = 1.12.12;
4517+
CURRENT_PROJECT_VERSION = 1.12.13;
45184518
DEFINES_MODULE = YES;
45194519
DEVELOPMENT_TEAM = LDX6L68VZJ;
45204520
ENABLE_BITCODE = YES;
@@ -4532,7 +4532,7 @@
45324532
INFOPLIST_FILE = RollbarFramework/Info.plist;
45334533
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
45344534
MACOSX_DEPLOYMENT_TARGET = 10.12;
4535-
ONLY_ACTIVE_ARCH = NO;
4535+
ONLY_ACTIVE_ARCH = YES;
45364536
PRODUCT_NAME = Rollbar;
45374537
SDKROOT = iphoneos;
45384538
TARGETED_DEVICE_FAMILY = "1,2";

Rollbar/Notifier_DTOs/RollbarConfig.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#pragma mark - constants
2525

26-
static NSString * const NOTIFIER_VERSION = @"1.12.12";
26+
static NSString * const NOTIFIER_VERSION = @"1.12.13";
2727

2828
#define NOTIFIER_NAME_PREFIX = @"rollbar-";
2929
#if TARGET_OS_IPHONE

rollbar-logo.png

3.9 KB
Loading

0 commit comments

Comments
 (0)