Skip to content

Commit

Permalink
Version 2.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djih committed Dec 6, 2018
1 parent afc14fe commit ae5a0d9
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## 2.21.0 (December 05, 2018)

* Update SDK to better handle when the SQLite database file gets corrupted between interactions.
* Add optional diagnostic logging that tracks exceptions thrown in the SDK and sends to Amplitude.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ An Android SDK for tracking events and revenue to [Amplitude](https://www.amplit
Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/articles/115002935588-Android-SDK-Installation) for instructions on installing and using our Android SDK.

# Latest Version #
[2.20.0 - Released on October 15, 2018](https://github.com/amplitude/Amplitude-Android/releases/latest)
[2.21.0 - Released on October 15, 2018](https://github.com/amplitude/Amplitude-Android/releases/latest)
[![Circle CI](https://circleci.com/gh/amplitude/Amplitude-Android.svg?style=badge&circle-token=e01cc9eb8ea55f82890973569bf55412848b9e49)](https://circleci.com/gh/amplitude/Amplitude-Android)

# Android SDK Reference #
Expand Down
Binary file removed amplitude-android-2.20.0.jar
Binary file not shown.
Binary file not shown.
Binary file added amplitude-android-2.21.0.jar
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<property name="groupId" value="com.amplitude" />
<property name="artifactId" value="amplitude-android" />
<property name="version" value="2.20.0" />
<property name="version" value="2.21.0" />

<property name="jar" value="${dist}/lib/${artifactId}-${version}.jar" />
<property name="uberjar" value="${dist}/lib/${artifactId}-${version}-with-dependencies.jar" />
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amplitude</groupId>
<artifactId>android-sdk</artifactId>
<version>2.20.0</version>
<version>2.21.0</version>
<packaging>jar</packaging>

<name>Amplitude Android SDK</name>
Expand Down
2 changes: 1 addition & 1 deletion src/com/amplitude/api/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class Constants {

public static final String LIBRARY = "amplitude-android";
public static final String PLATFORM = "Android";
public static final String VERSION = "2.20.0";
public static final String VERSION = "2.21.0";

public static final String EVENT_LOG_URL = "https://api.amplitude.com/";

Expand Down

0 comments on commit ae5a0d9

Please sign in to comment.