Skip to content

Commit b549f53

Browse files
committed
Merge pull request #163 from adjust/bitcode
Bitcode
2 parents 47f7cb1 + 29badcc commit b549f53

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Adjust.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "Adjust"
3-
s.version = "4.5.2"
3+
s.version = "4.5.3"
44
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
55
s.homepage = "http://adjust.com"
66
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
77
s.author = { "Christian Wellenbrock" => "[email protected]" }
8-
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.5.2" }
8+
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.5.3" }
99
s.ios.deployment_target = '6.0'
1010
s.tvos.deployment_target = '9.0'
1111
s.framework = 'SystemConfiguration'

Adjust.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@
926926
GCC_WARN_UNUSED_VARIABLE = YES;
927927
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
928928
ONLY_ACTIVE_ARCH = YES;
929-
OTHER_CFLAGS = "";
929+
OTHER_CFLAGS = "-fembed-bitcode";
930930
SDKROOT = iphoneos;
931931
};
932932
name = Debug;
@@ -957,7 +957,7 @@
957957
GCC_WARN_UNUSED_FUNCTION = YES;
958958
GCC_WARN_UNUSED_VARIABLE = YES;
959959
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
960-
OTHER_CFLAGS = "";
960+
OTHER_CFLAGS = "-fembed-bitcode";
961961
SDKROOT = iphoneos;
962962
VALIDATE_PRODUCT = YES;
963963
};

Adjust/ADJUtil.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <sys/xattr.h>
1717

1818
static NSString * const kBaseUrl = @"https://app.adjust.com";
19-
static NSString * const kClientSdk = @"ios4.5.2";
19+
static NSString * const kClientSdk = @"ios4.5.3";
2020

2121
static NSString * const kDateFormat = @"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'Z";
2222
static NSDateFormatter *dateFormat;

AdjustTests/ADJPackageFields.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ - (id) init {
1616

1717
// default values
1818
self.appToken = @"123456789012";
19-
self.clientSdk = @"ios4.5.2";
19+
self.clientSdk = @"ios4.5.3";
2020
self.suffix = @"";
2121
self.environment = @"sandbox";
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If you're using [CocoaPods][cocoapods] for `iOs` or `tvOS`, you can add the foll
1818
`Podfile` and continue with [step 4](#step4):
1919

2020
```ruby
21-
pod 'Adjust', :git => 'git://github.com/adjust/ios_sdk.git', :tag => 'v4.5.2'
21+
pod 'Adjust', :git => 'git://github.com/adjust/ios_sdk.git', :tag => 'v4.5.3'
2222
```
2323

2424
If you're using [Carthage][carthage], you can add following line to your `Cartfile`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.2
1+
4.5.3

doc/migrate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Migrate your adjust SDK for iOS to v4.5.2 from v3.4.0
1+
## Migrate your adjust SDK for iOS to v4.5.3 from v3.4.0
22

33
### Initial setup
44

0 commit comments

Comments
 (0)