Skip to content

Commit e02249c

Browse files
authored
Merge pull request #74 from adjust/v4292
Version 4.29.2
2 parents bfc24c8 + 6250e4a commit e02249c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+94
-743
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
/dev/integration_tests/**/xcuserdata
3939
/dev/integration_tests/**/Pods
4040
/packages/flutter/coverage/
41-
version
4241
analysis_benchmark.json
4342

4443
# packages file containing multi-root paths

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### Version 4.29.2 (18th February 2022)
2+
#### Added
3+
- Added support for `Unity` ad revenue tracking.
4+
- Added support for `Helium Chartboost` ad revenue tracking.
5+
6+
#### Changed
7+
- Removed deprecated v1 way of plugin registration (https://github.com/adjust/flutter_sdk/issues/64).
8+
- Migrated from `jcenter` to `mavenCentral` repository (https://github.com/adjust/flutter_sdk/pull/72).
9+
10+
#### Native SDKs
11+
- [[email protected]][ios_sdk_v4.29.7]
12+
- [[email protected]][android_sdk_v4.29.1]
13+
14+
---
15+
116
### Version 4.29.1 (23rd September 2021)
217
#### Added
318
- Added support for `Admost` ad revenue source.
@@ -240,6 +255,7 @@
240255
[ios_sdk_v4.28.0]: https://github.com/adjust/ios_sdk/tree/v4.28.0
241256
[ios_sdk_v4.29.2]: https://github.com/adjust/ios_sdk/tree/v4.29.2
242257
[ios_sdk_v4.29.6]: https://github.com/adjust/ios_sdk/tree/v4.29.6
258+
[ios_sdk_v4.29.7]: https://github.com/adjust/ios_sdk/tree/v4.29.7
243259

244260
[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
245261
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0
@@ -251,3 +267,4 @@
251267
[android_sdk_v4.27.0]: https://github.com/adjust/android_sdk/tree/v4.27.0
252268
[android_sdk_v4.28.1]: https://github.com/adjust/android_sdk/tree/v4.28.1
253269
[android_sdk_v4.28.5]: https://github.com/adjust/android_sdk/tree/v4.28.5
270+
[android_sdk_v4.29.1]: https://github.com/adjust/android_sdk/tree/v4.29.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ You can add Adjust SDK to your Flutter app by adding following to your `pubspec.
101101

102102
```yaml
103103
dependencies:
104-
adjust_sdk: ^4.29.1
104+
adjust_sdk: ^4.29.2
105105
```
106106
107107
Then navigate to your project in the terminal and run:
@@ -117,10 +117,10 @@ flutter packages get
117117
Since the 1st of August of 2014, apps in the Google Play Store must use the [Google Advertising ID][google-ad-id] to uniquely identify devices. To allow the Adjust SDK to use the Google Advertising ID, you must integrate the [Google Play Services][google-play-services]. If you haven't done this yet, please add dependency to Google Play Services library by adding following dependecy to your `dependencies` block of app's `build.gradle` file for Android platform:
118118

119119
```gradle
120-
implementation 'com.google.android.gms:play-services-analytics:16.0.4'
120+
implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1'
121121
```
122122

123-
**Note**: The Adjust SDK is not tied to any specific version of the `play-services-analytics` part of the Google Play Services library, so feel free to always use the latest version of it (or whichever you might need).
123+
**Note**: The Adjust SDK is not tied to any specific version of the `play-services-ads-identifier` part of the Google Play Services library. You can use the latest version of the library, or any other version you need.
124124

125125
### <a id="qs-permissions"></a>[Android] Add permissions
126126

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.29.1
1+
4.29.2

android/.classpath

Lines changed: 0 additions & 6 deletions
This file was deleted.

android/.project

Lines changed: 0 additions & 23 deletions
This file was deleted.

android/.settings/org.eclipse.buildship.core.prefs

Lines changed: 0 additions & 2 deletions
This file was deleted.

android/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ version '1.0-SNAPSHOT'
33
buildscript {
44
repositories {
55
google()
6-
jcenter()
6+
mavenCentral()
77
}
88

99
dependencies {
10-
classpath('com.android.tools.build:gradle:4.1.1')
10+
classpath('com.android.tools.build:gradle:7.1.1')
1111
}
1212
}
1313
rootProject.allprojects {
1414
repositories {
1515
google()
16-
jcenter()
16+
mavenCentral()
1717
}
1818

1919
gradle.projectsEvaluated {
@@ -24,7 +24,7 @@ rootProject.allprojects {
2424
}
2525
apply plugin: 'com.android.library'
2626
android {
27-
compileSdkVersion 30
27+
compileSdkVersion 32
2828

2929
defaultConfig {
3030
minSdkVersion 16
@@ -36,5 +36,5 @@ android {
3636
}
3737

3838
dependencies {
39-
api 'com.adjust.sdk:adjust-android:4.28.5'
39+
api 'com.adjust.sdk:adjust-android:4.29.1'
4040
}
-53.4 KB
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Apr 24 23:20:29 CEST 2018
1+
#Thu Feb 17 11:59:04 CET 2022
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)