Skip to content

Commit

Permalink
bundle strings
Browse files Browse the repository at this point in the history
  • Loading branch information
hasismaeel5 committed Oct 8, 2021
1 parent 273afd2 commit 29293fc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Example/VoiceIt2-IosSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@
GCC_PREFIX_HEADER = "VoiceIt2-IosSDK/VoiceIt2-IosSDK-Prefix.pch";
INFOPLIST_FILE = "VoiceIt2-IosSDK/VoiceIt2-IosSDK-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 2.3.0;
MARKETING_VERSION = 2.3.1;
MODULE_NAME = ExampleApp;
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down Expand Up @@ -629,7 +629,7 @@
GCC_PREFIX_HEADER = "VoiceIt2-IosSDK/VoiceIt2-IosSDK-Prefix.pch";
INFOPLIST_FILE = "VoiceIt2-IosSDK/VoiceIt2-IosSDK-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 2.3.0;
MARKETING_VERSION = 2.3.1;
MODULE_NAME = ExampleApp;
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down
8 changes: 4 additions & 4 deletions Example/VoiceIt2-IosSDK/VoiceItViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.API_KEY = @"API_KEY_HERE";
self.API_TOKEN = @"API_TOKEN_HERE";
self.TEST_USER_ID_ONE = @"USER_ID_HERE";
self.API_KEY = @"key_204413831ca34dc7a692338260eb41ea";
self.API_TOKEN = @"tok_b855f16643e74b88b2dc50d8b681d4e2";
self.TEST_USER_ID_ONE = @"usr_9cbc25ed62404792b5d496fe2a1b01d6";
self.TEST_USER_ID_TWO = @"USER_ID_HERE";
self.TEST_USER_ID = self.TEST_USER_ID_ONE;
self.TEST_GROUP_ID = @"GROUP_ID_HERE";
self.TEST_PHRASE = @"never forget tomorrow is a new day";
self.TEST_CONTENT_LANGUAGE = @"en-US";
self.TEST_CONTENT_LANGUAGE = @"es-MX";

NSMutableDictionary * styles = [[NSMutableDictionary alloc] init];
[styles setObject:@"#FBC132" forKey:@"kThemeColor"];
Expand Down
6 changes: 3 additions & 3 deletions VoiceIt2-IosSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Pod::Spec.new do |s|
s.name = 'VoiceIt2-IosSDK'
s.version = '2.3.0'
s.version = '2.3.1'
s.summary = 'A pod that lets you add voice and face verification and identification to your iOS apps, brought to you by VoiceIt.'

# This description is used to generate tags and improve search results.
Expand All @@ -28,10 +28,10 @@ s.source = { :git => 'https://github.com/voiceittech/VoiceIt2-IosSDK.g

s.ios.deployment_target = '11.0'
s.static_framework = true
s.source_files = 'VoiceIt2-IosSDK/Classes/**/*.{h,m}','VoiceIt2-IosSDK/Assets/**/*.{wav}'
s.source_files = 'VoiceIt2-IosSDK/Classes/**/*.{h,m}','VoiceIt2-IosSDK/Assets/**/*.{wav,strings}'

s.resource_bundles = {
'VoiceIt2-IosSDK' => ['VoiceIt2-IosSDK/Classes/**/*.{lproj,storyboard,xib,xcassets,strings}','VoiceIt2-IosSDK/Assets/**/*.{wav}']
'VoiceIt2-IosSDK' => ['VoiceIt2-IosSDK/Classes/**/*.{lproj,storyboard,xib,xcassets,strings}','VoiceIt2-IosSDK/Assets/**/*.{wav,strings}']
}

s.frameworks = 'UIKit', 'AVFoundation'
Expand Down
2 changes: 1 addition & 1 deletion VoiceIt2-IosSDK/Classes/VoiceItAPITwo.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

NSString * const host = @"https://api.voiceit.io/";
NSString * const livenessHost = @"https://liveness.voiceit.io/v1/";
NSString * const platformVersion = @"2.3.0";
NSString * const platformVersion = @"2.3.1";
NSString * const platformId = @"41";
NSString * notificationURL = @"";
@implementation VoiceItAPITwo
Expand Down

0 comments on commit 29293fc

Please sign in to comment.