Skip to content

Commit ec65a8e

Browse files
committed
Merge pull request #55 from adjust/development
New response data fields
2 parents 2c86dbb + 6b9e947 commit ec65a8e

25 files changed

+166
-283
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 Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
2626
defaultConfig {
2727
versionCode 11
28-
versionName '3.3.3'
28+
versionName '3.3.4'
2929
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
3030
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
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.3</version>
8+
<version>3.3.4</version>
99
<packaging>jar</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-06-25.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

@@ -113,11 +113,6 @@ private void initActivityHandler(Activity activity) {
113113
enabled = true;
114114

115115
logger = AdjustFactory.getLogger();
116-
117-
String gpsAdid = Util.getGpsAdid(context);
118-
if (gpsAdid == null) {
119-
logger.info("Unable to get Google Play Services Advertising ID at start time");
120-
}
121116
}
122117

123118
public void setSdkPrefix(String sdkPrefx) {
@@ -283,6 +278,11 @@ private void initInternal(boolean fromBundle) {
283278
fbAttributionId = Util.getAttributionId(context);
284279
userAgent = Util.getUserAgent(context);
285280

281+
String gpsAdid = Util.getGpsAdid(context);
282+
if (gpsAdid == null) {
283+
logger.info("Unable to get Google Play Services Advertising ID at start time");
284+
}
285+
286286
packageHandler = AdjustFactory.getPackageHandler(this, context, dropOfflineActivities);
287287

288288
readActivityState();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-06-25.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-06-25.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2012-10-11.
6-
// Copyright (c) 2012-2013 adeven. All rights reserved.
6+
// Copyright (c) 2012-2014 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

@@ -68,13 +68,13 @@ public static void setOnFinishedListener(OnFinishedListener listener) {
6868
/**
6969
* Tell Adjust that a particular event has happened.
7070
* <p/>
71-
* In your dashboard at http://adjust.io you can assign a callback URL to each
71+
* In your dashboard at http://adjust.com you can assign a callback URL to each
7272
* event type. That URL will get called every time the event is triggered. On
7373
* top of that you can pass a set of parameters to the following method that
7474
* will be forwarded to these callbacks.
7575
*
7676
* @param eventToken The Event Token for this kind of event. They are created
77-
* in the dashboard at http://adjust.io and should be six characters long.
77+
* in the dashboard at http://adjust.com and should be six characters long.
7878
* @param parameters An optional dictionary containing the callback parameters.
7979
* Provide key-value-pairs to be forwarded to your callbacks.
8080
*/

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by keyboardsurfer on 2013-11-08.
6-
// Copyright (c) 2012-2013 adeven. All rights reserved.
6+
// Copyright (c) 2012-2014 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

@@ -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.3";
22+
String CLIENT_SDK = "android3.3.4";
2323
String LOGTAG = "Adjust";
2424

2525
String SESSION_STATE_FILENAME = "AdjustIoActivityState";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-04-18.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-06-25.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Adjust
44
//
55
// Created by Christian Wellenbrock on 2013-06-25.
6-
// Copyright (c) 2013 adeven. All rights reserved.
6+
// Copyright (c) 2013 adjust GmbH. All rights reserved.
77
// See the file MIT-LICENSE for copying permission.
88
//
99

0 commit comments

Comments
 (0)