Skip to content

Commit 8c377a8

Browse files
authored
Merge pull request #574 from adjust/v4335
Version 4.33.5
2 parents f720f67 + 1ea7569 commit 8c377a8

File tree

26 files changed

+72
-18
lines changed

26 files changed

+72
-18
lines changed

Adjust/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ext {
99
coreMinSdkVersion = 9
1010
coreCompileSdkVersion = 33
1111
coreTargetSdkVersion = 33
12-
coreVersionName = '4.33.4'
12+
coreVersionName = '4.33.5'
1313
defaultVersionCode = 1
1414
webbridgeMinSdkVersion = 17
1515
samsungReferrerMinSdkVersion = 18

Adjust/example-app-fbpixel/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ dependencies {
3030
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
3131
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3232
implementation 'com.android.installreferrer:installreferrer:2.2'
33+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3334

3435
implementation project(':sdk-core')
3536
implementation project(':sdk-plugin-webbridge')

Adjust/example-app-java/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
3535
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3636
implementation 'com.android.installreferrer:installreferrer:2.2'
37+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3738

3839
implementation project(':sdk-core')
3940
}

Adjust/example-app-keyboard/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
3535
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3636
implementation 'com.android.installreferrer:installreferrer:2.2'
37+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3738

3839
implementation project(':sdk-core')
3940
}

Adjust/example-app-kotlin/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
3535
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3636
implementation 'com.android.installreferrer:installreferrer:2.2'
37+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3738

3839
implementation project(':sdk-core')
3940
}

Adjust/example-app-tv/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
3535
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3636
implementation 'com.android.installreferrer:installreferrer:2.2'
37+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3738

3839
implementation project(':sdk-core')
3940
}

Adjust/example-app-webbridge/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ dependencies {
2828
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
2929
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0'
3030
implementation 'com.android.installreferrer:installreferrer:2.2'
31+
implementation 'com.google.android.gms:play-services-appset:16.0.2'
3132

3233
implementation project(':sdk-core')
3334
implementation project(':sdk-plugin-webbridge')

Adjust/sdk-core/src/main/java/com/adjust/sdk/ActivityHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ public void run(ActivityHandler activityHandler) {
783783

784784
readConfigFile(adjustConfig.context);
785785

786-
deviceInfo = new DeviceInfo(adjustConfig.context, adjustConfig.sdkPrefix);
786+
deviceInfo = new DeviceInfo(adjustConfig);
787787

788788
if (adjustConfig.eventBufferingEnabled) {
789789
logger.info("Event buffering is enabled");

Adjust/sdk-core/src/main/java/com/adjust/sdk/Adjust.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private Adjust() {
3434
*/
3535
public static synchronized AdjustInstance getDefaultInstance() {
3636
@SuppressWarnings("unused")
37-
String VERSION = "!SDK-VERSION-STRING!:com.adjust.sdk:adjust-android:4.33.4";
37+
String VERSION = "!SDK-VERSION-STRING!:com.adjust.sdk:adjust-android:4.33.5";
3838

3939
if (defaultInstance == null) {
4040
defaultInstance = new AdjustInstance();

Adjust/sdk-core/src/main/java/com/adjust/sdk/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public interface Constants {
2929

3030
String SCHEME = "https";
3131
String AUTHORITY = "app.adjust.com";
32-
String CLIENT_SDK = "android4.33.4";
32+
String CLIENT_SDK = "android4.33.5";
3333
String LOGTAG = "Adjust";
3434
String REFTAG = "reftag";
3535
String INSTALL_REFERRER = "install_referrer";

0 commit comments

Comments
 (0)