Skip to content

Commit bdda238

Browse files
committed
Merge pull request #43 from adjust/weak_adsupport
Change dependency of adSupport framework to weak
2 parents 5eadc9a + 5b79cb1 commit bdda238

File tree

6 files changed

+20
-19
lines changed

6 files changed

+20
-19
lines changed

Adjust.podspec

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Pod::Spec.new do |s|
2-
s.name = "Adjust"
3-
s.version = "3.2.0"
4-
s.summary = "This is the iOS SDK of Adjust. You can read more about it at http://adjust.io."
5-
s.homepage = "http://adjust.io"
6-
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
7-
s.author = { "Christian Wellenbrock" => "[email protected]" }
8-
s.source = { :git => "https://github.com/adeven/adjust_ios_sdk.git", :tag => "v3.2.0" }
9-
s.platform = :ios, '4.3'
10-
s.framework = 'AdSupport', 'SystemConfiguration'
11-
s.source_files = 'Adjust/*.{h,m}', 'Adjust/AIAdditions/*.{h,m}'
12-
s.requires_arc = true
2+
s.name = "Adjust"
3+
s.version = "3.2.1"
4+
s.summary = "This is the iOS SDK of Adjust. You can read more about it at http://adjust.io."
5+
s.homepage = "http://adjust.io"
6+
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
7+
s.author = { "Christian Wellenbrock" => "[email protected]" }
8+
s.source = { :git => "https://github.com/adeven/adjust_ios_sdk.git", :tag => "v3.2.1" }
9+
s.platform = :ios, '4.3'
10+
s.framework = 'SystemConfiguration'
11+
s.weak_framework = 'AdSupport'
12+
s.source_files = 'Adjust/*.{h,m}', 'Adjust/AIAdditions/*.{h,m}'
13+
s.requires_arc = true
1314
end

Adjust/AIUtil.m

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

1616
static NSString * const kBaseUrl = @"https://app.adjust.io";
17-
static NSString * const kClientSdk = @"ios3.2.0";
17+
static NSString * const kClientSdk = @"ios3.2.1";
1818

1919
static NSString * const kDateFormat = @"yyyy-MM-dd'T'HH:mm:ss'Z'Z";
2020
static NSDateFormatter * dateFormat;

AdjustTests/AIActivityHandlerTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ - (void)testFirstRun
8686
AIActivityPackage *activityPackage = (AIActivityPackage *) self.packageHandlerMock.packageQueue[0];
8787

8888
// check the Sdk version is being tested
89-
XCTAssertEqual(@"ios3.2.0", activityPackage.clientSdk, @"%@", activityPackage.extendedString);
89+
XCTAssertEqual(@"ios3.2.1", activityPackage.clientSdk, @"%@", activityPackage.extendedString);
9090

9191
// packageType should be SESSION_START
9292
XCTAssertEqual(@"/startup", activityPackage.path, @"%@", activityPackage.extendedString);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you're using [CocoaPods][cocoapods], you can add the following line to your
1313
`Podfile` and continue with [step 3](#step3):
1414

1515
```ruby
16-
pod 'Adjust', :git => 'git://github.com/adjust/ios_sdk.git', :tag => 'v3.2.0'
16+
pod 'Adjust', :git => 'git://github.com/adjust/ios_sdk.git', :tag => 'v3.2.1'
1717
```
1818

1919
### 1. Get the SDK

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0
1+
3.2.1

doc/migrate.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Migrate your adjust SDK for iOS to v3.2.0 from v3.0.0
1+
## Migrate your adjust SDK for iOS to v3.2.1 from v3.0.0
22

33
We added an optional parameter `transactionId` to our `trackRevenue` methods. If you are tracking In-App Purchases you might want to pass in the transaction identifier provided by Apple to avoid duplicate revenue tracking. It should look roughly like this:
44

@@ -36,14 +36,14 @@ all adjust SDK calls.
3636

3737
![][rename]
3838

39-
3. Download version v3.2.0 and drag the new folder `Adjust` into your Xcode
39+
3. Download version v3.2.1 and drag the new folder `Adjust` into your Xcode
4040
Project Navigator.
4141

4242
![][drag]
4343

4444
4. Build your project to confirm that everything is properly connected again.
4545

46-
The adjust SDK v3.2.0 added delegate callbacks. Check out the [README] for
46+
The adjust SDK v3.2.1 added delegate callbacks. Check out the [README] for
4747
details.
4848

4949

@@ -99,7 +99,7 @@ meaningful at all times! Especially if you are tracking revenue.
9999
1. The `appDidLaunch` method now expects your App Token instead of your App ID.
100100
You can find your App Token in your [dashboard].
101101
102-
2. The adjust SDK for iOS 3.2.0 uses [ARC][arc]. If you haven't done already,
102+
2. The adjust SDK for iOS 3.2.1 uses [ARC][arc]. If you haven't done already,
103103
we recommend [transitioning your project to use ARC][transition] as well. If
104104
you don't want to use ARC, you have to enable ARC for all files of the
105105
adjust SDK. Please consult the [README] for details.

0 commit comments

Comments
 (0)