Skip to content

Commit d4938fd

Browse files
shashanksuuerceg
authored andcommitted
chore: remove beta specific details
1 parent 05c73d6 commit d4938fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
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 = 34
1111
coreTargetSdkVersion = 34
12-
coreVersionName = '5.0.0-SNAPSHOT'
12+
coreVersionName = '5.0.0'
1313
defaultVersionCode = 1
1414
webbridgeMinSdkVersion = 21
1515
samsungReferrerMinSdkVersion = 21

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public void applyConnectionOptions(final HttpsURLConnection connection,
3232
final String clientSdk)
3333
{
3434
connection.setRequestProperty("Client-SDK", clientSdk);
35-
connection.setRequestProperty("Beta-Version", "2");
35+
// in case of beta release, specify beta version here
36+
// connection.setRequestProperty("Beta-Version", "2");
3637
connection.setConnectTimeout(Constants.ONE_MINUTE);
3738
connection.setReadTimeout(Constants.ONE_MINUTE);
3839
}

0 commit comments

Comments
 (0)