Skip to content

Commit

Permalink
Fixed a bug which did not add the link to the push dialog button.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis committed Apr 1, 2020
1 parent b202950 commit ca3d266
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
19.09.3
* Fixed a bug which did not add the link to the push dialog button.

19.09.2
* Fixed a bug which did not add links to push buttons.

Expand Down
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 15
targetSdkVersion 28
versionCode 1
versionName "19.09.2"
versionName "19.09.3"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -57,7 +57,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk-native'
publishVersion = '19.09.2'
publishVersion = '19.09.3'
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 @@ -18,7 +18,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "19.09.2"
versionName "19.09.3"

testInstrumentationRunner 'ly.count.android.sdk.test.InstrumentationTestRunner'
testHandleProfiling true
Expand Down Expand Up @@ -66,7 +66,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk'
publishVersion = '19.09.2'
publishVersion = '19.09.3'
desc = 'Android SDK for Countly mobile analytics'
website = 'https://github.com/Countly/countly-sdk-android'
autoPublish = false
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 @@ -60,7 +60,7 @@ public class Countly {
/**
* Current version of the Count.ly Android SDK as a displayable string.
*/
public static final String COUNTLY_SDK_VERSION_STRING = "19.09.2";
public static final String COUNTLY_SDK_VERSION_STRING = "19.09.3";
/**
* Used as request meta data on every request
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,11 @@ public void call(Bitmap bitmap) {
public void onClick(DialogInterface dialog, int which) {
msg.recordAction(activity, 0);
dialog.dismiss();

Intent i = new Intent(Intent.ACTION_VIEW, msg.link());
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.putExtra(EXTRA_ACTION_INDEX, 0);// put zero because non 'button' action
activity.startActivity(i);
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion upload-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ publish {
userOrg = 'countly'
groupId = 'ly.count.android'
artifactId = 'sdk-plugin'
publishVersion = '19.09.2'
publishVersion = '19.09.3'
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 ca3d266

Please sign in to comment.