Skip to content

Commit 91551cd

Browse files
committed
Merge pull request #46 from adjust/v3.3.1
New version v3.3.1
2 parents 4fa10fe + 4ee50f5 commit 91551cd

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Adjust/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ android {
2525
compileSdkVersion 19
2626
defaultConfig {
2727
versionCode 11
28-
versionName '3.3.0'
28+
versionName '3.3.1'
2929
minSdkVersion 8
3030
targetSdkVersion 19
3131
}

Adjust/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>adjust-android</artifactId>
77
<groupId>com.adjust.sdk</groupId>
8-
<version>3.3.0</version>
8+
<version>3.3.1</version>
99
<packaging>jar</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Adjust/src/com/adjust/sdk/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface Constants {
1919
int THIRTY_MINUTES = 30 * ONE_MINUTE;
2020

2121
String BASE_URL = "https://app.adjust.io";
22-
String CLIENT_SDK = "android3.3.0";
22+
String CLIENT_SDK = "android3.3.1";
2323
String LOGTAG = "Adjust";
2424

2525
String SESSION_STATE_FILENAME = "AdjustIoActivityState";

Adjust/test/src/com/adjust/sdk/test/TestActivityHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void testFirstSession() {
9292

9393
// check the Sdk version is being tested
9494
assertEquals(activityPackage.getExtendedString(),
95-
"android3.3.0", activityPackage.getClientSdk());
95+
"android3.3.1", activityPackage.getClientSdk());
9696

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0
1+
3.3.1

doc/migrate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Migrate your adjust SDK for Android to 3.3.0 from v2.1.x
1+
## Migrate your adjust SDK for Android to 3.3.1 from v2.1.x
22

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

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

2929
![][import]
3030

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

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

39-
The adjust SDK v3.3.0 added delegate notifications. Check out the [README] for
39+
The adjust SDK v3.3.1 added delegate notifications. Check out the [README] for
4040
details.
4141

4242

0 commit comments

Comments
 (0)