Skip to content

Commit

Permalink
Merge pull request #127 from adjust/v4371
Browse files Browse the repository at this point in the history
Version 4.37.1
  • Loading branch information
uerceg authored Feb 21, 2024
2 parents 6168d0c + b6a7180 commit 1def19a
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 13 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
### Version 4.37.1 (21st February 2024)
#### Added
- Added support for `TradPlus` ad revenue tracking.

#### Fixed
- Fixed return type mismatch between native Android and Dart implementation of iOS specific methods (https://github.com/adjust/flutter_sdk/issues/122).

#### Native SDKs
- [[email protected]][ios_sdk_v4.37.1]
- [[email protected]][android_sdk_v4.38.1]

---

### Version 4.37.0 (23rd January 2024)
#### Added
- Added ability to process shortened deep links and provide the unshortened link back as a response. You can achieve this by invoking `processDeeplink` method of the `Adjust` instance.

#### Native SDKs
- [[email protected]][ios_sdk_v4.37.0]
- [[email protected]][android_sdk_v4.38.0]

---

### Version 4.36.0 (27th November 2023)
Expand All @@ -19,6 +33,7 @@
#### Native SDKs
- [[email protected]][ios_sdk_v4.36.0]
- [[email protected]][android_sdk_v4.37.0]

---

### Version 4.35.2 (9th October 2023)
Expand All @@ -28,6 +43,7 @@
#### Native SDKs
- [[email protected]][ios_sdk_v4.35.2]
- [[email protected]][android_sdk_v4.35.1]

---

### Version 4.35.1 (2nd October 2023)
Expand Down Expand Up @@ -395,6 +411,7 @@
[ios_sdk_v4.35.2]: https://github.com/adjust/ios_sdk/tree/v4.35.2
[ios_sdk_v4.36.0]: https://github.com/adjust/ios_sdk/tree/v4.36.0
[ios_sdk_v4.37.0]: https://github.com/adjust/ios_sdk/tree/v4.37.0
[ios_sdk_v4.37.1]: https://github.com/adjust/ios_sdk/tree/v4.37.1

[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0
Expand All @@ -415,4 +432,5 @@
[android_sdk_v4.35.0]: https://github.com/adjust/android_sdk/tree/v4.35.0
[android_sdk_v4.35.1]: https://github.com/adjust/android_sdk/tree/v4.35.1
[android_sdk_v4.37.0]: https://github.com/adjust/android_sdk/tree/v4.37.0
[android_sdk_v4.38.0]: https://github.com/adjust/android_sdk/tree/v4.38.0
[android_sdk_v4.38.0]: https://github.com/adjust/android_sdk/tree/v4.38.0
[android_sdk_v4.38.1]: https://github.com/adjust/android_sdk/tree/v4.38.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You can add Adjust SDK to your Flutter app by adding following to your `pubspec.

```yaml
dependencies:
adjust_sdk: ^4.37.0
adjust_sdk: ^4.37.1
```
Then navigate to your project in the terminal and run:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.37.0
4.37.1
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ android {
}

dependencies {
api 'com.adjust.sdk:adjust-android:4.38.0'
api 'com.adjust.sdk:adjust-android:4.38.1'
}
4 changes: 2 additions & 2 deletions android/src/main/java/com/adjust/sdk/flutter/AdjustSdk.java
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ private void trackPlayStoreSubscription(final MethodCall call, final Result resu
}

private void requestTrackingAuthorizationWithCompletionHandler(final Result result) {
result.success("Error. No requestTrackingAuthorizationWithCompletionHandler on Android platform!");
result.success(-1);
}

private void updateConversionValue(final Result result) {
Expand Down Expand Up @@ -1151,7 +1151,7 @@ private void checkForNewAttStatus(final MethodCall call, final Result result) {
}

private void getAppTrackingAuthorizationStatus(final MethodCall call, final Result result) {
result.success("Error. No getAppTrackingAuthorizationStatus for Android platform!");
result.success(-1);
}

private void getLastDeeplink(final MethodCall call, final Result result) {
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {

defaultConfig {
applicationId "com.adjust.examples"
minSdkVersion 16
minSdkVersion flutter.minSdkVersion
targetSdkVersion 33
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
4 changes: 2 additions & 2 deletions ios/adjust_sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'adjust_sdk'
s.version = '4.37.0'
s.version = '4.37.1'
s.summary = 'Adjust Flutter SDK for iOS platform'
s.description = <<-DESC
Adjust Flutter SDK for iOS platform.
Expand All @@ -14,5 +14,5 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'

s.dependency 'Flutter'
s.dependency 'Adjust', '4.37.0'
s.dependency 'Adjust', '4.37.1'
end
2 changes: 1 addition & 1 deletion lib/adjust.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import 'package:flutter/services.dart';
import 'package:meta/meta.dart';

class Adjust {
static const String _sdkPrefix = 'flutter4.37.0';
static const String _sdkPrefix = 'flutter4.37.1';
static const MethodChannel _channel =
const MethodChannel('com.adjust.sdk/api');

Expand Down
1 change: 1 addition & 0 deletions lib/adjust_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class AdjustConfig {
static const String AdRevenueSourcePublisher = 'publisher_sdk';
static const String AdRevenueSourceTopOn = 'topon_sdk';
static const String AdRevenueSourceAdx = 'adx_sdk';
static const String AdRevenueTradPlus = 'tradplus_sdk';

String _appToken;
AdjustEnvironment _environment;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: adjust_sdk
description: This is the Flutter SDK of Adjust™. You can read more about Adjust™ at adjust.com.
homepage: https://github.com/adjust/flutter_sdk
version: 4.37.0
version: 4.37.1

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/ios/test_lib.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'test_lib'
s.version = '4.37.0'
s.version = '4.37.1'
s.summary = 'Adjust test library for iOS platform'
s.description = <<-DESC
Adjust test library for iOS platform.
Expand Down
2 changes: 1 addition & 1 deletion test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test_lib
description: Flutter plugin for Adjust Testing Library. Intended exclusively for internal use.
version: 4.37.0
version: 4.37.1
author: Adjust ([email protected])

environment:
Expand Down

0 comments on commit 1def19a

Please sign in to comment.