Closed NickEntin closed 8 years ago
@NickEntin is this good to land?
@maxwellE Yep, go for it!
@maxwellE This could potentially be a breaking change considering the pods config changed, but I think major is enough since API-wise it's the same. Up to you.
The important change is in OHPhoneNumberFormattingPostProcessor.m
. The other changes are in moving the example app over to frameworks and updating the pod version.
// This imports libPhoneNumber-iOS if using libraries
#if __has_include(<libPhoneNumber-iOS/NBPhoneNumberUtil.h>)
#import <libPhoneNumber-iOS/NBPhoneNumberUtil.h>
#endif
// This imports libPhoneNumber-iOS if using frameworks
#if __has_include(<libPhoneNumber_iOS/NBPhoneNumberUtil.h>)
#import <libPhoneNumber_iOS/NBPhoneNumberUtil.h>
#endif
@maxwellE Can you land this?
The
use_frameworks!
flag now works properly. Fixes #12.