Skip to content

Commit

Permalink
Merge pull request #1 from adjust/v4120
Browse files Browse the repository at this point in the history
Version 4.12.0
  • Loading branch information
uerceg authored Dec 29, 2017
2 parents add9f42 + dcb5e09 commit 02025e3
Show file tree
Hide file tree
Showing 128 changed files with 5,961 additions and 387 deletions.
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[submodule "ext/iOS/sdk"]
path = ext/iOS/sdk
url = [email protected]:adjust/ios_sdk.git
branch = cordova
url = [email protected]:adjust/ios_sdk_dev.git
branch = master
[submodule "ext/Android/sdk"]
path = ext/Android/sdk
url = [email protected]:adjust/android_sdk.git
branch = cordova
url = [email protected]:adjust/android_sdk_dev.git
branch = master
8 changes: 0 additions & 8 deletions .npmignore

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
### Version 4.12.0 (29th December 2017)
#### Native changes:
- **[iOS]** https://github.com/adjust/ios_sdk/blob/master/CHANGELOG.md#version-4120-13th-december-2017
- **[iOS]** https://github.com/adjust/ios_sdk/blob/master/CHANGELOG.md#version-4121-13th-december-2017
- **[AND]** https://github.com/adjust/android_sdk/blob/master/CHANGELOG.md#version-4120-13th-december-2017

#### Added
- **[AND]** Added `getAmazonAdId` method to `Adjust` interface.
- **[iOS][AND]** Added `setAppSecret` method to `AdjustConfig` interface.
- **[iOS][AND]** Added `setReadMobileEquipmentIdentity` method to `AdjustConfig` interface.

#### Fixed
- **[AND]** Fixed handling of `null` value being passed as a currency to `setRevenue` method.

#### Native SDKs
- **[iOS]** [[email protected]][ios_sdk_v4.12.1]
- **[AND]** [[email protected]][android_sdk_v4.12.0]

---

### Version 4.11.3 (28th September 2017)
#### Added
- **[iOS]** Improved iOS 11 support.
Expand Down Expand Up @@ -282,6 +302,7 @@
[ios_sdk_v4.11.3]: https://github.com/adjust/ios_sdk/tree/v4.11.3
[ios_sdk_v4.11.4]: https://github.com/adjust/ios_sdk/tree/v4.11.4
[ios_sdk_v4.11.5]: https://github.com/adjust/ios_sdk/tree/v4.11.5
[ios_sdk_v4.12.1]: https://github.com/adjust/ios_sdk/tree/v4.12.1

[android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0
[android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0
Expand All @@ -294,3 +315,4 @@
[android_sdk_v4.11.1]: https://github.com/adjust/android_sdk/tree/v4.11.1
[android_sdk_v4.11.3]: https://github.com/adjust/android_sdk/tree/v4.11.3
[android_sdk_v4.11.4]: https://github.com/adjust/android_sdk/tree/v4.11.4
[android_sdk_v4.12.0]: https://github.com/adjust/android_sdk/tree/v4.12.0
188 changes: 140 additions & 48 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.11.3
4.12.0
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 Cordova to 4.11.3 from 3.4.1
## Migrate your adjust SDK for Cordova to 4.12.0 from 3.4.1

### Migration procedure

Expand Down
13 changes: 6 additions & 7 deletions example/config.xml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.adjust.examples" version="4.11.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>adjust-example-app</name>
<widget id="com.adjust.examples" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
Expand All @@ -19,8 +22,4 @@
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="android" spec="~5.2.2" />
<universal-links>
<host name="f6wc.adj.st" scheme="https" event="adjustDeepLinking" />
</universal-links>
</widget>
Empty file modified example/hooks/README.md
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "com.adjust.examples",
"version": "1.0.0",
"displayName": "HelloCordova",
"cordova": {
"platforms": [],
"plugins": {}
},
"dependencies": {}
}
Empty file modified example/platforms/platforms.json
100644 → 100755
Empty file.
16 changes: 16 additions & 0 deletions example/plugins/com.adjust.sdk.purchase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### Version 1.0.0 (10th August 2016)
#### Added
- Added product ID to the iOS verification request.

#### Changed
- Updated docs.
- Updated native iOS purchase SDK version is **1.0.0**.
- Updated native Android purchase SDK version is **1.1.2**.

---

### Version 0.1.1 (19th May 2016)
#### Added
- Initial release of the adjust purchase SDK for Cordova.
- Native iOS purchase SDK version is **0.2.1**.
- Native Android purchase SDK version is **1.1.1**.
Loading

0 comments on commit 02025e3

Please sign in to comment.