Skip to content

Commit

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

## 2.17.0 (February 05, 2018)

* Add ability to specify a custom `platform` value during initialization as an input argument. If the value is `null` or an empty string then `platform` will default to `Android`.

## 2.16.0 (November 27, 2017)

* Expose a public `getUserPropertiesOperations` method on the `Identify` class.
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.16.0 - Released on November 27, 2017](https://github.com/amplitude/Amplitude-Android/releases/latest)
[2.17.0 - Released on November 27, 2017](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 not shown.
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.16.0" />
<property name="version" value="2.17.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.16.0</version>
<version>2.17.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.16.0";
public static final String VERSION = "2.17.0";

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

Expand Down

0 comments on commit b067ae1

Please sign in to comment.