Skip to content

Commit

Permalink
Version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
allanca committed Mar 17, 2015
1 parent 5ee5bb1 commit 775684d
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
# Setup #
1. If you haven't already, go to https://amplitude.com/signup and register for an account. Then, add an app. You will receive an API Key.

2. [Download the jar](https://github.com/amplitude/Amplitude-Android/raw/master/amplitude-android-1.4.4.jar) and copy it into the "libs" folder in your Android project in Eclipse. If you're using an older build of Android, you may need to [add the jar file to your build path](http://stackoverflow.com/questions/3280353/how-to-import-a-jar-in-eclipse).
2. [Download the jar](https://github.com/amplitude/Amplitude-Android/raw/master/amplitude-android-1.4.5.jar) and copy it into the "libs" folder in your Android project in Eclipse. If you're using an older build of Android, you may need to [add the jar file to your build path](http://stackoverflow.com/questions/3280353/how-to-import-a-jar-in-eclipse).

3. Alternatively, if you are using Maven in your project, the jar is available on [Maven Central](http://search.maven.org/#artifactdetails%7Ccom.amplitude%7Candroid-sdk%7C1.4.4%7Cjar) using the following configuration in your pom.xml:
3. Alternatively, if you are using Maven in your project, the jar is available on [Maven Central](http://search.maven.org/#artifactdetails%7Ccom.amplitude%7Candroid-sdk%7C1.4.5%7Cjar) using the following configuration in your pom.xml:

```
<dependency>
<groupId>com.amplitude</groupId>
<artifactId>android-sdk</artifactId>
<version>1.4.4</version>
<version>1.4.5</version>
</dependency>
```

4. Or if you are using gradle in your project, include in your build.gradle file:

```
compile 'com.amplitude:android-sdk:1.4.4'
compile 'com.amplitude:android-sdk:1.4.5'
```

5. In every file that uses analytics, import com.amplitude.api.Amplitude at the top:
Expand Down
Binary file removed amplitude-android-1.4.4.jar
Binary file not shown.
Binary file added amplitude-android-1.4.5.jar
Binary file not shown.
Binary file removed amplitude-unity-1.4.4.jar
Binary file not shown.
Binary file added amplitude-unity-1.4.5.jar
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="1.4.4" />
<property name="version" value="1.4.5" />

<property name="jar" value="${dist}/lib/${artifactId}-${version}.jar" />
<property name="unity-jar" value="amplitude-unity-${version}.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>1.4.4</version>
<version>1.4.5</version>
<packaging>jar</packaging>

<name>Amplitude Android SDK</name>
Expand Down

0 comments on commit 775684d

Please sign in to comment.