Skip to content

Commit

Permalink
Merge pull request #45 from adjust/v4171
Browse files Browse the repository at this point in the history
Version 4.17.1
  • Loading branch information
uerceg authored Feb 19, 2019
2 parents 2c7059e + b23aa37 commit f888fa7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 7 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.17.1 (19th February 2019)
#### Changed
- Using Xcode 10 to build native iOS parts of the ANE.

#### Native SDKs
- [iOS@v4.17.1][ios_sdk_v4.17.1]
- [Android@v4.17.0][android_sdk_v4.17.0]

---

### Version 4.17.0 (14th January 2019)
#### Added
- Added `getSdkVersion()` method to `Adjust` interface to obtain current SDK version string.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.17.0
4.17.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.17.0 from 3.4.3
## Migrate your adjust SDK for Adobe AIR to 4.17.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/28.0">
<id>com.adjust.examples</id>
<versionNumber>4.17.0</versionNumber>
<versionNumber>4.17.1</versionNumber>
<filename>Adjust AIR SDK Demo</filename>

<initialWindow>
Expand Down
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.17.0";
private static var sdkPrefix:String = "adobe_air4.17.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/16.0">
<id>com.adjust.sdk</id>
<versionNumber>4.17.0</versionNumber>
<versionNumber>4.17.1</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
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/28.0">
<id>com.adjust.examples</id>
<versionNumber>4.17.0</versionNumber>
<versionNumber>4.17.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/16.0">
<id>com.adjust.test</id>
<versionNumber>4.17.0</versionNumber>
<versionNumber>4.17.1</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down

0 comments on commit f888fa7

Please sign in to comment.