Skip to content

Commit 7a54e3d

Browse files
committed
New version 4.12.4
1 parent 902f0b9 commit 7a54e3d

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
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.12.3"
4+
return "4.12.4"
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.12.3";
32+
String CLIENT_SDK = "android4.12.4";
3333
String LOGTAG = "Adjust";
3434
String REFTAG = "reftag";
3535
String INSTALL_REFERRER = "install_referrer";

Adjust/example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
// running mvn package
2828
//compile fileTree(dir: '../target', include: ['*.jar'])
2929
// using maven repository
30-
//compile 'com.adjust.sdk:adjust-android:4.12.3'
30+
//compile 'com.adjust.sdk:adjust-android:4.12.4'
3131

3232
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
3333
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'

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.12.3</version>
8+
<version>4.12.4</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.12.3</version>
8+
<version>4.12.4</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.12.3</version>
8+
<version>4.12.4</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.12.3</version>
8+
<version>4.12.4</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.12.3";
56+
clientSdk = "android4.12.4";
5757
suffix = "";
5858
attribution = new AdjustAttribution();
5959
playServices = true;

Adjust/testapp/src/main/java/com/adjust/testapp/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ private void startTestSession() {
3434
//testLibrary.addTestDirectory("current/sdkInfo");
3535
//testLibrary.addTest("current/appSecret/Test_AppSecret_no_secret");
3636

37-
testLibrary.startTestSession("android4.12.3");
37+
testLibrary.startTestSession("android4.12.4");
3838
}
3939
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ These are the minimal steps required to integrate the Adjust SDK into your Andro
7272
If you are using Maven, add the following to your `build.gradle` file:
7373

7474
```
75-
compile 'com.adjust.sdk:adjust-android:4.12.3'
75+
compile 'com.adjust.sdk:adjust-android:4.12.4'
7676
compile 'com.android.installreferrer:installreferrer:1.0'
7777
```
7878

7979
**Note**: If you are using `Gradle 3.0.0 or above`, make sure to use the `implementation` keyword instead of `compile` as follows:
8080

8181
```
82-
implementation 'com.adjust.sdk:adjust-android:4.12.3'
82+
implementation 'com.adjust.sdk:adjust-android:4.12.4'
8383
implementation 'com.android.installreferrer:installreferrer:1.0'
8484
```
8585

0 commit comments

Comments
 (0)