-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from adjust/v4141
Version 4.14.1
- Loading branch information
Showing
73 changed files
with
372 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
[submodule "ext/Android/sdk"] | ||
path = ext/Android/sdk | ||
[submodule "ext/android/sdk"] | ||
path = ext/android/sdk | ||
url = [email protected]:adjust/android_sdk.git | ||
branch = master | ||
[submodule "ext/iOS/sdk"] | ||
path = ext/iOS/sdk | ||
branch = master | ||
[submodule "ext/ios/sdk"] | ||
path = ext/ios/sdk | ||
url = [email protected]:adjust/ios_sdk.git | ||
branch = master | ||
[submodule "ext/Windows/sdk"] | ||
path = ext/Windows/sdk | ||
branch = master | ||
[submodule "ext/windows/sdk"] | ||
path = ext/windows/sdk | ||
url = [email protected]:adjust/windows_sdk.git | ||
branch = master | ||
branch = master | ||
[submodule "ext/android/sdk-dev"] | ||
path = ext/android/sdk-dev | ||
url = [email protected]:adjust/android_sdk_dev.git | ||
branch = master | ||
[submodule "ext/ios/sdk-dev"] | ||
path = ext/ios/sdk-dev | ||
url = [email protected]:adjust/ios_sdk_dev.git | ||
branch = master | ||
[submodule "ext/windows/sdk-dev"] | ||
path = ext/windows/sdk-dev | ||
url = [email protected]:adjust/windows_sdk_dev.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
### Version 4.14.1 (18th June 2018) | ||
#### Changed | ||
- Updated the way how iOS native bridge handles push tokens from Unity interface - they are now being passed directly as strings to native iOS SDK. | ||
|
||
#### Native SDKs | ||
- [[email protected]][ios_sdk_v4.14.1] | ||
- [[email protected]][android_sdk_v4.14.0] | ||
- [[email protected]][windows_sdk_v4.14.0] | ||
|
||
--- | ||
|
||
### Version 4.14.0 (8th June 2018) | ||
#### Added | ||
- Added deep link caching in case `appWillOpenUrl`/`AppWillOpenUrl` method is called natively before SDK is initialised. | ||
|
@@ -496,6 +507,7 @@ | |
[ios_sdk_v4.12.3]: https://github.com/adjust/ios_sdk/tree/v4.12.3 | ||
[ios_sdk_v4.13.0]: https://github.com/adjust/ios_sdk/tree/v4.13.0 | ||
[ios_sdk_v4.14.0]: https://github.com/adjust/ios_sdk/tree/v4.14.0 | ||
[ios_sdk_v4.14.1]: https://github.com/adjust/ios_sdk/tree/v4.14.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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.14.0 | ||
4.14.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
# ======================================== # | ||
|
||
# Colors for output | ||
NC='\033[0m' | ||
RED='\033[0;31m' | ||
CYAN='\033[1;36m' | ||
GREEN='\033[0;32m' | ||
|
||
# ======================================== # | ||
|
||
# Set directories of interest for the script | ||
MVNDIR=./sdk-dev/Adjust | ||
JARINDIR=./sdk-dev/Adjust/target | ||
JAROUTDIR=../../Assets/Adjust/Android | ||
(cd $MVNDIR; mvn clean) | ||
(cd $MVNDIR; mvn package) | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-SDK]:${GREEN} Previous SDK JAR cleanup and generating new one ... ${NC}" | ||
rm -v $JAROUTDIR/adjust-android* | ||
cp -v $JARINDIR/adjust-android-*.*.*.jar $JAROUTDIR | ||
rm -v $JAROUTDIR/*-javadoc.jar | ||
rm -v $JAROUTDIR/*-sources.jar | ||
mv -v $JAROUTDIR/adjust-android-*.*.*.jar $JAROUTDIR/adjust-android.jar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-SDK]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-SDK]:${GREEN} Script completed! ${NC}" | ||
|
||
# ======================================== # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
# ======================================== # | ||
|
||
# Colors for output | ||
NC='\033[0m' | ||
RED='\033[0;31m' | ||
CYAN='\033[1;36m' | ||
GREEN='\033[0;32m' | ||
|
||
# ======================================== # | ||
|
||
# Set directories of interest for the script | ||
SDK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
SDK_DIR="$(dirname "$SDK_DIR")" | ||
SDK_DIR="$(dirname "$SDK_DIR")" | ||
BUILD_DIR=sdk-dev/Adjust | ||
JAR_IN_DIR=testlibrary/build/outputs | ||
JAR_OUT_DIR=Assets/Adjust/Android | ||
cd $(dirname $0) | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-TEST]:${GREEN} Running Gradle tasks: clean makeJar ... ${NC}" | ||
cd $BUILD_DIR | ||
./gradlew clean :testlibrary:makeJar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-TEST]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-TEST]:${GREEN} Moving test library JAR from ${JAR_IN_DIR} to ${JAR_OUT_DIR} ... ${NC}" | ||
mv -v ${JAR_IN_DIR}/*.jar ${SDK_DIR}/${JAR_OUT_DIR}/adjust-testing.jar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-TEST]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-DEV-TEST]:${GREEN} Script completed! ${NC}" | ||
|
||
# ======================================== # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
# ======================================== # | ||
|
||
# Colors for output | ||
NC='\033[0m' | ||
RED='\033[0;31m' | ||
CYAN='\033[1;36m' | ||
GREEN='\033[0;32m' | ||
|
||
# ======================================== # | ||
|
||
# Set directories of interest for the script | ||
MVNDIR=./sdk/Adjust | ||
JARINDIR=./sdk/Adjust/target | ||
JAROUTDIR=../../Assets/Adjust/Android | ||
(cd $MVNDIR; mvn clean) | ||
(cd $MVNDIR; mvn package) | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-SDK]:${GREEN} Previous SDK JAR cleanup and generating new one ... ${NC}" | ||
rm -v $JAROUTDIR/adjust-android* | ||
cp -v $JARINDIR/adjust-android-*.*.*.jar $JAROUTDIR | ||
rm -v $JAROUTDIR/*-javadoc.jar | ||
rm -v $JAROUTDIR/*-sources.jar | ||
mv -v $JAROUTDIR/adjust-android-*.*.*.jar $JAROUTDIR/adjust-android.jar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-SDK]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-SDK]:${GREEN} Script completed! ${NC}" | ||
|
||
# ======================================== # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
# ======================================== # | ||
|
||
# Colors for output | ||
NC='\033[0m' | ||
RED='\033[0;31m' | ||
CYAN='\033[1;36m' | ||
GREEN='\033[0;32m' | ||
|
||
# ======================================== # | ||
|
||
# Set directories of interest for the script | ||
SDK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
SDK_DIR="$(dirname "$SDK_DIR")" | ||
SDK_DIR="$(dirname "$SDK_DIR")" | ||
BUILD_DIR=sdk/Adjust | ||
JAR_IN_DIR=testlibrary/build/outputs | ||
JAR_OUT_DIR=Assets/Adjust/Android | ||
cd $(dirname $0) | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-TEST]:${GREEN} Running Gradle tasks: clean makeJar ... ${NC}" | ||
cd $BUILD_DIR | ||
./gradlew clean :testlibrary:makeJar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-TEST]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-TEST]:${GREEN} Moving test library JAR from ${JAR_IN_DIR} to ${JAR_OUT_DIR} ... ${NC}" | ||
mv -v ${JAR_IN_DIR}/*.jar ${SDK_DIR}/${JAR_OUT_DIR}/adjust-testing.jar | ||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-TEST]:${GREEN} Done! ${NC}" | ||
|
||
# ======================================== # | ||
|
||
echo -e "${CYAN}[ADJUST][ANDROID][BUILD-TEST]:${GREEN} Script completed! ${NC}" | ||
|
||
# ======================================== # |
Submodule sdk
updated
from 000000 to 64ae49
This file was deleted.
Oops, something went wrong.
Submodule sdk
deleted from
4c9d7b
Oops, something went wrong.