Skip to content

Commit

Permalink
Updated SDK version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis committed Nov 27, 2020
1 parent 8f4c828 commit cd5f474
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 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.1-rc1"
versionName "20.11.1"

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.1-rc1'
publishVersion = '20.11.1'
desc = 'Countly Android Native Crash Support'
website = 'https://github.com/Countly/countly-sdk-android'
autoPublish = false
Expand Down
4 changes: 2 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.1-rc1"
versionName "20.11.1"

testInstrumentationRunner 'ly.count.android.sdk.test.InstrumentationTestRunner'
testHandleProfiling true
Expand Down Expand Up @@ -70,7 +70,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk'
publishVersion = '20.11.1-rc1'
publishVersion = '20.11.1'
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.1-rc1"));
Assert.assertTrue(pair[1].equals("20.11.1"));
} 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.1-rc1";
private String DEFAULT_COUNTLY_SDK_VERSION_STRING = "20.11.1";
/**
* Used as request meta data on every request
*/
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/main/java/ly/count/android/sdk/ModuleAPM.java
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ public void triggerForeground() {

if(!manualForegroundBackgroundTriggers) {
if (_cly.isLoggingEnabled()) {
Log.w(Countly.TAG, "[Apm] trying to use manual foreground/background triggers without enabling them");
Log.w(Countly.TAG, "[Apm] trying to use manual foreground triggers without enabling them");
}
return;
}
Expand All @@ -669,7 +669,7 @@ public void triggerBackground() {

if(!manualForegroundBackgroundTriggers) {
if (_cly.isLoggingEnabled()) {
Log.w(Countly.TAG, "[Apm] trying to use manual foreground/background triggers without enabling them");
Log.w(Countly.TAG, "[Apm] trying to use manual background triggers without enabling them");
}
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,8 +708,7 @@ public static void init(final Application application, Countly.CountlyMessagingM
throw new IllegalStateException("Non null application must be provided!");
}

Log.e(Countly.TAG, "CURRENT PUSH CONSENT " + getPushConsent(application));

//Log.e(Countly.TAG, "CURRENT PUSH CONSENT " + getPushConsent(application));

// set preferred push provider
CountlyPush.provider = preferredProvider;
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.1-rc1'
publishVersion = '20.11.1'
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 cd5f474

Please sign in to comment.