Skip to content
This repository has been archived by the owner on Jan 12, 2019. It is now read-only.

Commit

Permalink
Release 5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryant Luk committed Sep 16, 2016
1 parent 0ec0fdf commit 12b83d6
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CardIO.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'CardIO'
spec.version = '5.4.0'
spec.version = '5.4.1'
spec.license = { type: 'MIT', file: 'LICENSE.md' }
spec.homepage = 'https://www.card.io'
spec.authors = { 'CardIO' => 'support@paypal.com' }
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
spec.platform = :ios, '6.1'
spec.ios.deployment_target = '6.1'
spec.requires_arc = true
spec.source_files = 'CardIO/*.{h,m}'
spec.source_files = 'CardIO/*.h'
spec.frameworks = 'Accelerate', 'AVFoundation', 'AudioToolbox', 'CoreMedia', 'CoreVideo', 'MobileCoreServices', 'OpenGLES', 'QuartzCore', 'Security', 'UIKit'
spec.libraries = 'c++'
spec.vendored_libraries = 'CardIO/libCardIO.a', 'CardIO/libopencv_core.a', 'CardIO/libopencv_imgproc.a'
Expand Down
3 changes: 2 additions & 1 deletion CardIO/CardIO.h
@@ -1,6 +1,6 @@
//
// CardIO.h
// Version 5.4.0
// Version 5.4.1
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand All @@ -13,3 +13,4 @@
#import "CardIOPaymentViewController.h"
#import "CardIOPaymentViewControllerDelegate.h"
#import "CardIOUtilities.h"

3 changes: 2 additions & 1 deletion CardIO/CardIOCreditCardInfo.h
@@ -1,6 +1,6 @@
//
// CardIOCreditCardInfo.h
// Version 5.4.0
// Version 5.4.1
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down Expand Up @@ -82,3 +82,4 @@ typedef NS_ENUM(NSInteger, CardIOCreditCardType) {
+ (UIImage *)logoForCardType:(CardIOCreditCardType)cardType;

@end

3 changes: 2 additions & 1 deletion CardIO/CardIODetectionMode.h
@@ -1,6 +1,6 @@
//
// CardIODetectionMode.h
// Version 5.4.0
// Version 5.4.1
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand All @@ -16,3 +16,4 @@ typedef NS_ENUM(NSInteger, CardIODetectionMode) {
};

#endif

5 changes: 3 additions & 2 deletions CardIO/CardIOPaymentViewController.h
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewController.h
// Version 5.4.0
// Version 5.4.1
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down Expand Up @@ -197,4 +197,5 @@ extern NSString * const CardIOScanningOrientationAnimationDuration;
/// @see navigationBarStyleForCardIO
@property(nonatomic, retain, readwrite) UIColor *navigationBarTintColorForCardIO;

@end
@end

3 comments on commit 12b83d6

@keith
Copy link
Contributor

@keith keith commented on 12b83d6 Oct 25, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bluk do you remember what the specific issue was here with the ObjC building?

@bluk
Copy link
Contributor

@bluk bluk commented on 12b83d6 Oct 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@keith At the time, it would generate an error like:

Undefined symbols for architecture x86_64:
  "_OBJC_CLASS_$_CardIOPaymentViewController", referenced from:
      objc-class-ref in libTestLib.a(TestViewController.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

during compilation. Removing the compilation of the .m fixed the issue.

@keith
Copy link
Contributor

@keith keith commented on 12b83d6 Mar 31, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've fixed this issue, and solved the original problem with https://github.com/card-io/card.io-iOS-SDK/pull/284/files

Please sign in to comment.