Skip to content

Commit

Permalink
Merge pull request #177 from adjust/v4213
Browse files Browse the repository at this point in the history
Version 4.21.3
  • Loading branch information
uerceg authored May 4, 2020
2 parents dc6a78a + 0078ae9 commit f2a4681
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Assets/Adjust/Android/AdjustAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace com.adjust.sdk
#if UNITY_ANDROID
public class AdjustAndroid
{
private const string sdkPrefix = "unity4.21.2";
private const string sdkPrefix = "unity4.21.3";
private static bool launchDeferredDeeplink = true;
private static AndroidJavaClass ajcAdjust = new AndroidJavaClass("com.adjust.sdk.Adjust");
private static AndroidJavaObject ajoCurrentActivity = new AndroidJavaClass("com.unity3d.player.UnityPlayer").GetStatic<AndroidJavaObject>("currentActivity");
Expand Down
Binary file modified Assets/Adjust/Android/Test/adjust-test.jar
Binary file not shown.
Binary file modified Assets/Adjust/Android/adjust-android.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion Assets/Adjust/Windows/AdjustWindows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace com.adjust.sdk
{
public class AdjustWindows
{
private const string sdkPrefix = "unity4.21.2";
private const string sdkPrefix = "unity4.21.3";
private static bool appLaunched = false;

public static void Start(AdjustConfig adjustConfig)
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/iOS/Adjust.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Adjust.h
// Adjust
//
// V4.21.2
// V4.21.3
// Created by Christian Wellenbrock (wellle) on 23rd July 2013.
// Copyright © 2012-2017 Adjust GmbH. All rights reserved.
//
Expand Down
Binary file modified Assets/Adjust/iOS/AdjustSdk.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Assets/Adjust/iOS/AdjustiOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace com.adjust.sdk
#if UNITY_IOS
public class AdjustiOS
{
private const string sdkPrefix = "unity4.21.2";
private const string sdkPrefix = "unity4.21.3";

[DllImport("__Internal")]
private static extern void _AdjustLaunchApp(
Expand Down
Binary file modified Assets/Adjust/iOS/Test/AdjustTestLibrary.a
Binary file not shown.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### Version 4.21.3 (4th May 2020)
#### Fixed
- Removed iAd timer from iOS native SDK.

#### Native SDKs
- [[email protected]][ios_sdk_v4.21.3]
- [[email protected]][android_sdk_v4.21.1]
- [[email protected]][windows_sdk_v4.17.0]

---

### Version 4.21.2 (15th April 2020)
#### Fixed
- Added check for iOS timer source and block existence prior to starting it.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.21.2
4.21.3
2 changes: 1 addition & 1 deletion doc/english/migration/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for Unity3d to 4.21.2 from 3.4.4
## Migrate your Adjust SDK for Unity3d to 4.21.3 from 3.4.4

### Migration procedure

Expand Down
2 changes: 1 addition & 1 deletion ext/android/sdk
Submodule sdk updated 22 files
+35 −0 Adjust/example-app-keyboard/build.gradle
+29 −0 Adjust/example-app-keyboard/proguard-rules.pro
+47 −0 Adjust/example-app-keyboard/src/main/AndroidManifest.xml
+194 −0 Adjust/example-app-keyboard/src/main/java/com/adjust/examples/keyboard/GlobalApplication.java
+127 −0 Adjust/example-app-keyboard/src/main/java/com/adjust/examples/keyboard/KeyboardInputMethodService.java
+90 −0 Adjust/example-app-keyboard/src/main/java/com/adjust/examples/keyboard/MainActivity.java
+19 −0 Adjust/example-app-keyboard/src/main/res/layout/activity_main.xml
+10 −0 Adjust/example-app-keyboard/src/main/res/layout/key_preview.xml
+9 −0 Adjust/example-app-keyboard/src/main/res/layout/keyboard_view.xml
+ Adjust/example-app-keyboard/src/main/res/mipmap-hdpi/ic_launcher.png
+ Adjust/example-app-keyboard/src/main/res/mipmap-mdpi/ic_launcher.png
+ Adjust/example-app-keyboard/src/main/res/mipmap-xhdpi/ic_launcher.png
+ Adjust/example-app-keyboard/src/main/res/mipmap-xxhdpi/ic_launcher.png
+6 −0 Adjust/example-app-keyboard/src/main/res/values-w820dp/dimens.xml
+10 −0 Adjust/example-app-keyboard/src/main/res/values/colors.xml
+5 −0 Adjust/example-app-keyboard/src/main/res/values/dimens.xml
+6 −0 Adjust/example-app-keyboard/src/main/res/values/strings.xml
+8 −0 Adjust/example-app-keyboard/src/main/res/values/styles.xml
+28 −0 Adjust/example-app-keyboard/src/main/res/xml/keyboard.xml
+4 −0 Adjust/example-app-keyboard/src/main/res/xml/method.xml
+1 −1 Adjust/settings.gradle
+2 −1 README.md

0 comments on commit f2a4681

Please sign in to comment.