-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Getting ready for 7.0.0 release (#275)
Adding support for user locale, networking improvements, and general cleanup. Affected Tickets: [MOB-806], [MOB-816], [MOB-818], [MOB-817], & [MOB-819]
- Loading branch information
Showing
738 changed files
with
16,281 additions
and
14,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "BVSDK" | ||
s.version = '6.9.0' | ||
s.version = '7.0.0' | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
s.homepage = 'https://developer.bazaarvoice.com/' | ||
s.license = { :type => 'Commercial', :text => 'See https://developer.bazaarvoice.com/API_Terms_of_Use' } | ||
s.author = { 'Bazaarvoice' => '[email protected]' } | ||
|
@@ -26,55 +26,60 @@ Pod::Spec.new do |s| | |
s.default_subspec = 'BVCommon' | ||
|
||
s.subspec 'BVCommon' do |common| | ||
common.source_files = 'Pod/BVCommon/**/*.{h,m}', 'Pod/BVAnalytics/**/*.{h,m}' | ||
common.source_files = 'BVSDK/BVCommon/**/*.{h,m}', 'BVSDK/BVAnalytics/**/*.{h,m}' | ||
common.private_header_files = 'BVSDK/BVCommon/**/Private/*.{h}', 'BVSDK/BVAnalytics/**/Private/*.{h}' | ||
end | ||
|
||
s.subspec 'BVCommonUI' do |commonui| | ||
commonui.source_files = 'Pod/BVCommonUI/**/*.{h,m}' | ||
commonui.source_files = 'BVSDK/BVCommonUI/**/*.{h,m}' | ||
commonui.private_header_files = 'BVSDK/BVCommonUI/**/Private/*.{h}' | ||
end | ||
|
||
s.subspec 'BVAnalytics' do |analytics| | ||
analytics.dependency 'BVSDK/BVCommon' | ||
end | ||
|
||
s.subspec 'BVConversations' do |conversations| | ||
conversations.source_files = 'Pod/BVConversations/**/*.{h,m}' | ||
conversations.source_files = 'BVSDK/BVConversations/**/*.{h,m}' | ||
conversations.private_header_files = 'BVSDK/BVConversations/**/Private/*.{h}' | ||
conversations.dependency 'BVSDK/BVCommon' | ||
end | ||
|
||
s.subspec 'BVConversationsStores' do |conversationsstores| | ||
conversationsstores.source_files = 'Pod/BVConversationsStores/**/*.{h,m}' | ||
conversationsstores.source_files = 'BVSDK/BVConversationsStores/**/*.{h,m}', 'BVSDK/BVConversations/**/Private/*.{h,m}' | ||
conversationsstores.private_header_files = 'BVSDK/BVConversationsStores/**/Private/*.{h}' | ||
conversationsstores.dependency 'BVSDK/BVConversations' | ||
end | ||
|
||
s.subspec 'BVConversationsUI' do |conversationsui| | ||
conversationsui.source_files = 'Pod/BVConversationsUI/**/*.{h,m}' | ||
conversationsui.source_files = 'BVSDK/BVConversationsUI/**/*.{h,m}' | ||
conversationsui.dependency 'BVSDK/BVCommonUI' | ||
conversationsui.dependency 'BVSDK/BVConversationsStores' | ||
end | ||
|
||
s.subspec 'BVCurations' do |curations| | ||
curations.source_files = 'Pod/BVCurations/**/*.{h,m}' | ||
curations.source_files = 'BVSDK/BVCurations/**/*.{h,m}' | ||
curations.dependency 'BVSDK/BVCommon' | ||
end | ||
|
||
s.subspec 'BVCurationsUI' do |curationsui| | ||
curationsui.source_files = 'Pod/BVCurationsUI/**/*.{h,m}' | ||
curationsui.source_files = 'BVSDK/BVCurationsUI/**/*.{h,m}' | ||
curationsui.dependency 'BVSDK/BVCurations' | ||
curationsui.dependency 'BVSDK/BVCommonUI' | ||
curationsui.resources = ["Pod/BVCurationsUI/SocialMediaIcons/*.xcassets"] | ||
curationsui.resources = ["BVSDK/BVCurationsUI/SocialMediaIcons/*.xcassets"] | ||
end | ||
|
||
s.subspec 'BVNotifications' do |notifications| | ||
|
||
notifications.source_files = 'Pod/BVNotifications/**/*.{h,m}', 'Pod/BVCommon/Private/*.{h,m}' | ||
notifications.resources = ['Pod/BVNotifications/mapThumbnail.png'] | ||
notifications.source_files = 'BVSDK/BVNotifications/**/*.{h,m}', 'BVSDK/BVCommon/Private/*.{h,m}' | ||
notifications.resources = ['BVSDK/BVNotifications/mapThumbnail.png'] | ||
|
||
notifications.dependency 'BVSDK/BVConversationsUI' | ||
end | ||
|
||
s.subspec 'BVRecommendations' do |recs| | ||
recs.source_files = 'Pod/BVRecommendations/**/*.{h,m}' | ||
recs.source_files = 'BVSDK/BVRecommendations/**/*.{h,m}' | ||
recs.private_header_files = 'BVSDK/BVRecommendations/**/Private/*.{h}' | ||
recs.dependency 'BVSDK/BVCommon' | ||
end | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// BVLocaleServiceManager.h | ||
// BVSDK | ||
// | ||
// Copyright © 2018 Bazaarvoice. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
/// The types of services that require Locale specific actions. | ||
typedef NS_ENUM(NSUInteger, BVLocaleServiceManagerService) { | ||
BVLocaleServiceManagerServiceAnalytics | ||
}; | ||
|
||
@interface BVLocaleServiceManager : NSObject | ||
|
||
/// Create and get the singleton instance of the region manager. | ||
+ (nonnull instancetype)sharedManager; | ||
|
||
/// Acquire the base URL for service given a region object | ||
- (nonnull NSString *)resourceForService:(BVLocaleServiceManagerService)service | ||
withLocale:(nonnull NSLocale *)locale | ||
andIsProduction:(BOOL)isProduction; | ||
|
||
@end |
Oops, something went wrong.
🎉