Skip to content

Commit

Permalink
Merge pull request #57 from adjust/v4221
Browse files Browse the repository at this point in the history
Version 4.22.1
  • Loading branch information
uerceg authored Jan 5, 2021
2 parents 613ddbe + 3dca0a9 commit b29e034
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### Version 4.22.1 (5th January 2021)
#### Fixed
- Fixed `AppTrackingTransparency` framework linking issue which caused crashes on pre iOS 14 devices.

#### Native SDKs
- [iOS@v4.24.0][ios_sdk_v4.24.0]
- [Android@v4.25.0][android_sdk_v4.25.0]

---

### Version 4.22.0 (16th December 2020)
#### Added
- Added communication with SKAdNetwork framework by default on iOS 14.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.22.0
4.22.1
2 changes: 1 addition & 1 deletion doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for Adobe AIR to 4.22.0 from 3.4.3
## Migrate your Adjust SDK for Adobe AIR to 4.22.1 from 3.4.3

### SDK initialization

Expand Down
2 changes: 1 addition & 1 deletion example/Main-app.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/33.1">
<id>com.adjust.examples</id>
<versionNumber>4.22.0</versionNumber>
<versionNumber>4.22.1</versionNumber>
<filename>Adjust AIR SDK Demo</filename>

<initialWindow>
Expand Down
Binary file removed example/lib/Adjust-4.22.0.ane
Binary file not shown.
Binary file added example/lib/Adjust-4.22.1.ane
Binary file not shown.
2 changes: 1 addition & 1 deletion src/com/adjust/sdk/Adjust.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package com.adjust.sdk {
import flash.external.ExtensionContext;

public class Adjust extends EventDispatcher {
private static var sdkPrefix:String = "adobe_air4.22.0";
private static var sdkPrefix:String = "adobe_air4.22.1";
private static var errorMessage:String = "Adjust: SDK not started. Start it manually using the 'start' method";

private static var hasSdkStarted:Boolean = false;
Expand Down
2 changes: 1 addition & 1 deletion src/extension.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<extension xmlns="http://ns.adobe.com/air/extension/33.1">
<id>com.adjust.sdk</id>
<versionNumber>4.22.0</versionNumber>
<versionNumber>4.22.1</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down
2 changes: 1 addition & 1 deletion src/platformoptions_ios.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<option>-framework iAd</option>
<option>-framework CoreTelephony</option>
<option>-framework StoreKit</option>
<option>-framework AppTrackingTransparency</option>
<option>-weak_framework AppTrackingTransparency</option>
<option>-liconv</option>
<option>-lclang_rt.ios</option>
</linkerOptions>
Expand Down
2 changes: 1 addition & 1 deletion test/app/Main-app.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/33.1">
<id>com.adjust.examples</id>
<versionNumber>4.22.0</versionNumber>
<versionNumber>4.22.1</versionNumber>
<filename>Adjust AIR SDK Test</filename>

<initialWindow>
Expand Down
2 changes: 1 addition & 1 deletion test/plugin/src/extension.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<extension xmlns="http://ns.adobe.com/air/extension/33.1">
<id>com.adjust.test</id>
<versionNumber>4.22.0</versionNumber>
<versionNumber>4.22.1</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down

0 comments on commit b29e034

Please sign in to comment.