Skip to content

Commit

Permalink
Increasing SDK version to .3
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis committed Apr 11, 2023
1 parent f62ed81 commit e0b14c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
10 changes: 1 addition & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,22 @@ org.gradle.parallel=false
org.gradle.configureondemand=true
# should be enabled in the future. Needs Gradle 6.5
# org.gradle.vfs.watch = true

android.useAndroidX=true
android.enableJetifier=true

# RELEASE FIELD SECTION
VERSION_NAME=22.09.2
VERSION_NAME=22.09.3
GROUP=ly.count.android

POM_URL=https://github.com/Countly/countly-sdk-android
POM_SCM_URL=https://github.com/Countly/countly-sdk-android

POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
POM_LICENCE_DIST=repo

POM_DEVELOPER_NAME=Countly

SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true

#SIGNING SECTION
signing.keyId=xxx
signing.password=xxx
signing.secretKeyRingFile=xxx

mavenCentralUsername=xxx
mavenCentralPassword=xxx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ public void testPrepareCommonRequest() {
break;
case "sdk_version":
if (a == 0) {
Assert.assertTrue(pair[1].equals("22.09.2"));
Assert.assertTrue(pair[1].equals("22.09.3"));
} else if (a == 1) {
Assert.assertTrue(pair[1].equals("123sdf.v-213"));
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/ly/count/android/sdk/Countly.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ of this software and associated documentation files (the "Software"), to deal
*/
public class Countly {

private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "22.09.2";
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "22.09.3";

/**
* Used as request meta data on every request
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/ly/count/android/sdk/DeviceInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ public String isOnline(Context context) {
}
return "false";
} catch (Exception e) {
Countly.sharedInstance().L.w("Got exception determining connectivity", e);
Countly.sharedInstance().L.w("isOnline, Got exception determining netwprl connectivity", e);
}
return null;
}
Expand Down

0 comments on commit e0b14c5

Please sign in to comment.