Skip to content

Commit 2abc832

Browse files
authored
Merge pull request #645 from adjust/v542
Version 5.4.2
2 parents 818a1d0 + 3c4fc14 commit 2abc832

File tree

34 files changed

+217
-172
lines changed

34 files changed

+217
-172
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 = 21
1010
coreCompileSdkVersion = 36
1111
coreTargetSdkVersion = 36
12-
coreVersionName = '5.4.1'
12+
coreVersionName = '5.4.2'
1313
defaultVersionCode = 1
1414
webbridgeMinSdkVersion = 21
1515
samsungReferrerMinSdkVersion = 21

Adjust/examples/example-app-fbpixel/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ dependencies {
3535

3636
implementation project(':sdk-core')
3737
implementation project(':plugins:sdk-plugin-webbridge')
38-
implementation 'com.adjust.signature:adjust-android-signature:3+'
38+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
3939
}

Adjust/examples/example-app-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
repositories {
44
maven {
5-
url "https://oss.sonatype.org/content/repositories/staging/"
5+
url "https://central.sonatype.com/repository/maven-snapshots/"
66
}
77
}
88

@@ -38,5 +38,5 @@ dependencies {
3838
implementation 'com.google.android.gms:play-services-appset:16.1.0'
3939

4040
implementation project(':sdk-core')
41-
implementation 'com.adjust.signature:adjust-android-signature:3+'
41+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
4242
}

Adjust/examples/example-app-keyboard/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
repositories {
44
maven {
5-
url "https://oss.sonatype.org/content/repositories/staging/"
5+
url "https://central.sonatype.com/repository/maven-snapshots/"
66
}
77
}
88

@@ -38,5 +38,5 @@ dependencies {
3838
implementation 'com.google.android.gms:play-services-appset:16.1.0'
3939

4040
implementation project(':sdk-core')
41-
implementation 'com.adjust.signature:adjust-android-signature:3+'
41+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
4242
}

Adjust/examples/example-app-kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ dependencies {
4040
implementation 'com.google.android.gms:play-services-appset:16.1.0'
4141

4242
implementation project(':sdk-core')
43-
implementation 'com.adjust.signature:adjust-android-signature:3+'
43+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
4444
}

Adjust/examples/example-app-tv/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
repositories {
44
maven {
5-
url "https://oss.sonatype.org/content/repositories/staging/"
5+
url "https://central.sonatype.com/repository/maven-snapshots/"
66
}
77
}
88

@@ -38,5 +38,5 @@ dependencies {
3838
implementation 'com.google.android.gms:play-services-appset:16.1.0'
3939

4040
implementation project(':sdk-core')
41-
implementation 'com.adjust.signature:adjust-android-signature:3+'
41+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
4242
}

Adjust/examples/example-app-webbridge/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ dependencies {
3333

3434
implementation project(':sdk-core')
3535
implementation project(':plugins:sdk-plugin-webbridge')
36-
implementation 'com.adjust.signature:adjust-android-signature:3+'
36+
implementation 'com.adjust.signature:adjust-android-signature:3.47.0'
3737
}

Adjust/plugins/sdk-plugin-huawei-referrer/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
repositories {
66
maven {
7-
url "https://oss.sonatype.org/content/repositories/staging/"
7+
url "https://central.sonatype.com/repository/maven-snapshots/"
88
}
99
}
1010

@@ -27,7 +27,7 @@ dependencies {
2727
// Add SDK via module.
2828
compileOnly project(':sdk-core')
2929
// Add SDK via Maven.
30-
// implementation 'com.adjust.sdk:adjust-android:5.4.1'
30+
// implementation 'com.adjust.sdk:adjust-android:5.4.2'
3131
}
3232

3333
// read local properties
@@ -106,9 +106,9 @@ afterEvaluate {
106106
maven {
107107
if (rootProject.ext.coreVersionName.toString().contains('SNAPSHOT')) {
108108
println "Using Maven SNAPSHOT repository for publishing"
109-
url "https://oss.sonatype.org/content/repositories/snapshots/"
109+
url "https://central.sonatype.com/repository/maven-snapshots/"
110110
} else {
111-
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
111+
url "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2"
112112
}
113113
if (project.hasProperty("sonatypeUsername")) {
114114
credentials {

Adjust/plugins/sdk-plugin-imei/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
repositories {
66
maven {
7-
url "https://oss.sonatype.org/content/repositories/staging/"
7+
url "https://central.sonatype.com/repository/maven-snapshots/"
88
}
99
}
1010

@@ -30,7 +30,7 @@ dependencies {
3030
// Add SDK via module.
3131
compileOnly project(':sdk-core')
3232
// Add SDK via Maven.
33-
// implementation 'com.adjust.sdk:adjust-android:5.4.1'
33+
// implementation 'com.adjust.sdk:adjust-android:5.4.2'
3434
}
3535

3636
// read local properties
@@ -108,9 +108,9 @@ afterEvaluate {
108108
maven {
109109
if (rootProject.ext.coreVersionName.toString().contains('SNAPSHOT')) {
110110
println "Using Maven SNAPSHOT repository for publishing"
111-
url "https://oss.sonatype.org/content/repositories/snapshots/"
111+
url "https://central.sonatype.com/repository/maven-snapshots/"
112112
} else {
113-
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
113+
url "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2"
114114
}
115115
if (project.hasProperty("sonatypeUsername")) {
116116
credentials {

Adjust/plugins/sdk-plugin-meta-referrer/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
repositories {
66
maven {
7-
url "https://oss.sonatype.org/content/repositories/staging/"
7+
url "https://central.sonatype.com/repository/maven-snapshots/"
88
}
99
}
1010

@@ -27,7 +27,7 @@ dependencies {
2727
// Add SDK via module.
2828
compileOnly project(':sdk-core')
2929
// Add SDK via Maven.
30-
// implementation 'com.adjust.sdk:adjust-android:5.4.1'
30+
// implementation 'com.adjust.sdk:adjust-android:5.4.2'
3131
}
3232

3333
// read local properties
@@ -106,9 +106,9 @@ afterEvaluate {
106106
maven {
107107
if (rootProject.ext.coreVersionName.toString().contains('SNAPSHOT')) {
108108
println "Using Maven SNAPSHOT repository for publishing"
109-
url "https://oss.sonatype.org/content/repositories/snapshots/"
109+
url "https://central.sonatype.com/repository/maven-snapshots/"
110110
} else {
111-
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
111+
url "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2"
112112
}
113113
if (project.hasProperty("sonatypeUsername")) {
114114
credentials {

0 commit comments

Comments
 (0)