Skip to content

Commit

Permalink
Merge pull request #46 from adjust/v3.3.1
Browse files Browse the repository at this point in the history
New version v3.3.1
  • Loading branch information
nonelse committed Apr 29, 2014
2 parents 4fa10fe + 4ee50f5 commit 91551cd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
compileSdkVersion 19
defaultConfig {
versionCode 11
versionName '3.3.0'
versionName '3.3.1'
minSdkVersion 8
targetSdkVersion 19
}
Expand Down
2 changes: 1 addition & 1 deletion Adjust/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>adjust-android</artifactId>
<groupId>com.adjust.sdk</groupId>
<version>3.3.0</version>
<version>3.3.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion Adjust/src/com/adjust/sdk/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface Constants {
int THIRTY_MINUTES = 30 * ONE_MINUTE;

String BASE_URL = "https://app.adjust.io";
String CLIENT_SDK = "android3.3.0";
String CLIENT_SDK = "android3.3.1";
String LOGTAG = "Adjust";

String SESSION_STATE_FILENAME = "AdjustIoActivityState";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void testFirstSession() {

// check the Sdk version is being tested
assertEquals(activityPackage.getExtendedString(),
"android3.3.0", activityPackage.getClientSdk());
"android3.3.1", activityPackage.getClientSdk());

Map<String, String> parameters = activityPackage.getParameters();

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.3.1
6 changes: 3 additions & 3 deletions doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your adjust SDK for Android to 3.3.0 from v2.1.x
## Migrate your adjust SDK for Android to 3.3.1 from v2.1.x

We renamed the main class `com.adeven.adjustio.AdjustIo` to
`com.adjust.sdk.Adjust`. Follow these steps to update all adjust SDK calls.
Expand All @@ -24,7 +24,7 @@ We renamed the main class `com.adeven.adjustio.AdjustIo` to
4. In the same fashion, replace `adeven.adjustio` with `adjust.sdk` in all
manifest files to update the package name of the `ReferrerReceiver`.

5. Download version v3.3.0 and create a new Android project from the `Adjust` folder.
5. Download version v3.3.1 and create a new Android project from the `Adjust` folder.

![][import]

Expand All @@ -36,7 +36,7 @@ We renamed the main class `com.adeven.adjustio.AdjustIo` to

8. Build your project to confirm that everything is properly connected again.

The adjust SDK v3.3.0 added delegate notifications. Check out the [README] for
The adjust SDK v3.3.1 added delegate notifications. Check out the [README] for
details.


Expand Down

0 comments on commit 91551cd

Please sign in to comment.