Skip to content

Commit

Permalink
Merge pull request #47 from adjust/v4172
Browse files Browse the repository at this point in the history
Version 4.17.2
  • Loading branch information
uerceg authored Feb 21, 2019
2 parents f888fa7 + f47808e commit 1f99c31
Show file tree
Hide file tree
Showing 9 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.17.2 (21st February 2019)
#### Changed
- Increased **ios_version_min** to **8.0** from **6.0** (for reference: https://github.com/adjust/adobe_air_sdk/issues/46).

#### Native SDKs
- [[email protected]][ios_sdk_v4.17.1]
- [[email protected]][android_sdk_v4.17.0]

---

### Version 4.17.1 (19th February 2019)
#### Changed
- Using Xcode 10 to build native iOS parts of the ANE.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.17.1
4.17.2
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.1 from 3.4.3
## Migrate your adjust SDK for Adobe AIR to 4.17.2 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.1</versionNumber>
<versionNumber>4.17.2</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.1";
private static var sdkPrefix:String = "adobe_air4.17.2";
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.1</versionNumber>
<versionNumber>4.17.2</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down
2 changes: 1 addition & 1 deletion src/platformoptions.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<platform xmlns="http://ns.adobe.com/air/extension/16.0">
<sdkVersion>7.0</sdkVersion>
<linkerOptions>
<option>-ios_version_min 6.0</option>
<option>-ios_version_min 8.0</option>
<option>-framework AdSupport</option>
<option>-framework iAd</option>
<option>-framework CoreTelephony</option>
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.1</versionNumber>
<versionNumber>4.17.2</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.1</versionNumber>
<versionNumber>4.17.2</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down

0 comments on commit 1f99c31

Please sign in to comment.