Skip to content

Commit

Permalink
Increasing SDK version to 20.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis committed Feb 23, 2021
1 parent 86d114b commit e2c88c6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions sdk-native/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
minSdkVersion 17
targetSdkVersion 29
versionCode 1
versionName "20.11.5"
versionName "20.11.6"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -57,7 +57,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk-native'
publishVersion = '20.11.5'
publishVersion = '20.11.6'
desc = 'Countly Android Native Crash Support'
website = 'https://github.com/Countly/countly-sdk-android'
autoPublish = false
Expand Down
5 changes: 3 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
minSdkVersion 17
targetSdkVersion 29
versionCode 1
versionName "20.11.5"
versionName "20.11.6"

testInstrumentationRunner 'ly.count.android.sdk.test.InstrumentationTestRunner'
testHandleProfiling true
Expand Down Expand Up @@ -64,13 +64,14 @@ dependencies {

androidTestImplementation "org.mockito:mockito-core:${mockitoVersion}"
androidTestImplementation "org.mockito:mockito-android:${mockitoVersion}"
//androidTestImplementation "com.squareup.okhttp3:mockwebserver:4.9.0"
}

publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk'
publishVersion = '20.11.5'
publishVersion = '20.11.6'
desc = 'Android SDK for Countly mobile analytics'
website = 'https://github.com/Countly/countly-sdk-android'
autoPublish = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public void testPrepareCommonRequest() {
break;
case "sdk_version":
if (a == 0) {
Assert.assertTrue(pair[1].equals("20.11.5"));
Assert.assertTrue(pair[1].equals("20.11.6"));
} 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 @@ -51,7 +51,7 @@ of this software and associated documentation files (the "Software"), to deal
@SuppressWarnings("JavadocReference")
public class Countly {

private String DEFAULT_COUNTLY_SDK_VERSION_STRING = "20.11.5";
private String DEFAULT_COUNTLY_SDK_VERSION_STRING = "20.11.6";
/**
* Used as request meta data on every request
*/
Expand Down
2 changes: 1 addition & 1 deletion upload-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk-plugin'
publishVersion = '20.11.5'
publishVersion = '20.11.6'
desc = 'Gradle plugin for automatic upload of symbol files'
website = 'https://github.com/Countly/countly-sdk-android'
autoPublish = false
Expand Down

0 comments on commit e2c88c6

Please sign in to comment.