Skip to content

Commit 8470674

Browse files
committed
New version v4.11.2
1 parent 29eb8ed commit 8470674

File tree

15 files changed

+31
-14
lines changed

15 files changed

+31
-14
lines changed

Adjust/adjust/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22

33
def getVersionName() {
4-
return "4.11.1"
4+
return "4.11.2"
55
}
66

77
android {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public interface Constants {
2929
String BASE_URL = "https://app.adjust.com";
3030
String SCHEME = "https";
3131
String AUTHORITY = "app.adjust.com";
32-
String CLIENT_SDK = "android4.11.1";
32+
String CLIENT_SDK = "android4.11.2";
3333
String LOGTAG = "Adjust";
3434
String REFTAG = "reftag";
3535
String DEEPLINK = "deeplink";

Adjust/example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
// running mvn package
2929
//compile fileTree(dir: '../target', include: ['*.jar'])
3030
// using maven repository
31-
//compile 'com.adjust.sdk:adjust-android:4.11.1'
31+
//compile 'com.adjust.sdk:adjust-android:4.11.2'
3232

3333
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
3434
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'

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>4.11.1</version>
8+
<version>4.11.2</version>
99
<packaging>jar</packaging>
1010
<name>Adjust Android SDK</name>
1111
<url>https://github.com/adjust/android_sdk</url>

Adjust/pom_criteo.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-criteo</artifactId>
77
<groupId>com.adjust.sdk</groupId>
8-
<version>4.11.1</version>
8+
<version>4.11.2</version>
99
<packaging>jar</packaging>
1010
<name>Adjust Android SDK</name>
1111
<url>https://github.com/adjust/android_sdk</url>

Adjust/pom_sociomantic.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-sociomantic</artifactId>
77
<groupId>com.adjust.sdk</groupId>
8-
<version>4.11.1</version>
8+
<version>4.11.2</version>
99
<packaging>jar</packaging>
1010
<name>Adjust Android SDK</name>
1111
<url>https://github.com/adjust/android_sdk</url>

Adjust/pom_trademob.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-trademob</artifactId>
77
<groupId>com.adjust.sdk</groupId>
8-
<version>4.11.1</version>
8+
<version>4.11.2</version>
99
<packaging>jar</packaging>
1010
<name>Adjust Android SDK</name>
1111
<url>https://github.com/adjust/android_sdk</url>

Adjust/test/src/androidTest/java/com/adjust/sdk/TestActivityPackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public TestActivityPackage(ActivityPackage activityPackage) {
5353
// default values
5454
appToken = "123456789012";
5555
environment = "sandbox";
56-
clientSdk = "android4.11.1";
56+
clientSdk = "android4.11.2";
5757
suffix = "";
5858
attribution = new AdjustAttribution();
5959
playServices = true;

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### Version 4.11.2 (xxth March 2017)
2+
#### Added
3+
- Added sending of the app's install time.
4+
- Added sending of the app's update time.
5+
- Added connection validity checks.
6+
7+
#### Changed
8+
- Garantee that access of Activity handler of internal methods are done thru it's executor
9+
- Update gradle version
10+
11+
#### Fixed
12+
- Fixed random occurrence of attribution request being fired before session request.
13+
- Fix query string parsing
14+
- Use separate executor in background timer like previously done for foreground timer
15+
16+
---
17+
118
### Version 4.11.1 (27th February 2017)
219
#### Fixed
320
- Prevent multiple created threads mentioned in android_sdk#265

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ compile project(":adjust")
9797
If you are using Maven, add this line instead:
9898

9999
```
100-
compile 'com.adjust.sdk:adjust-android:4.11.1'
100+
compile 'com.adjust.sdk:adjust-android:4.11.2'
101101
```
102102

103103
### <a id="sdk-gps"></a>Add Google Play Services

0 commit comments

Comments
 (0)