Skip to content

Commit b84f2b9

Browse files
committed
Preparing for release
1 parent d0d4a9f commit b84f2b9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

app/src/main/java/ly/count/android/demo/App.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,7 @@ public void onReceive(Context context, Intent intent) {
295295
filter.addAction(CountlyPush.SECURE_NOTIFICATION_BROADCAST);
296296
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
297297
registerReceiver(messageReceiver, filter, getPackageName() + COUNTLY_BROADCAST_PERMISSION_POSTFIX, null, Context.RECEIVER_NOT_EXPORTED);
298-
}
299-
else {
298+
} else {
300299
registerReceiver(messageReceiver, filter, getPackageName() + COUNTLY_BROADCAST_PERMISSION_POSTFIX, null);
301300
}
302301
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ org.gradle.configureondemand=true
2222
android.useAndroidX=true
2323
android.enableJetifier=true
2424
# RELEASE FIELD SECTION
25-
VERSION_NAME=23.8.3-RC2
25+
VERSION_NAME=23.8.3
2626
GROUP=ly.count.android
2727
POM_URL=https://github.com/Countly/countly-sdk-android
2828
POM_SCM_URL=https://github.com/Countly/countly-sdk-android

sdk/src/androidTest/java/ly/count/android/sdk/ConnectionQueueTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ public void testPrepareCommonRequest() {
502502
break;
503503
case "sdk_version":
504504
if (a == 0) {
505-
Assert.assertTrue(pair[1].equals("23.8.3-RC2"));
505+
Assert.assertTrue(pair[1].equals("23.8.3"));
506506
} else if (a == 1) {
507507
Assert.assertTrue(pair[1].equals("123sdf.v-213"));
508508
}

sdk/src/main/java/ly/count/android/sdk/Countly.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ of this software and associated documentation files (the "Software"), to deal
4949
*/
5050
public class Countly {
5151

52-
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "23.8.3-RC2";
52+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "23.8.3";
5353

5454
/**
5555
* Used as request meta data on every request

0 commit comments

Comments
 (0)