Skip to content

Commit 5dfc984

Browse files
nonelseuerceg
authored andcommitted
New version 4.12.1
1 parent 93baf44 commit 5dfc984

File tree

14 files changed

+16
-16
lines changed

14 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.0"
4+
return "4.12.1"
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.0";
32+
String CLIENT_SDK = "android4.12.1";
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.0'
30+
//compile 'com.adjust.sdk:adjust-android:4.12.1'
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.0</version>
8+
<version>4.12.1</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.0</version>
8+
<version>4.12.1</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.0</version>
8+
<version>4.12.1</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.0</version>
8+
<version>4.12.1</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.0";
56+
clientSdk = "android4.12.1";
5757
suffix = "";
5858
attribution = new AdjustAttribution();
5959
playServices = true;

README.md

Lines changed: 3 additions & 3 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.0'
75+
compile 'com.adjust.sdk:adjust-android:4.12.1'
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.0'
82+
implementation 'com.adjust.sdk:adjust-android:4.12.1'
8383
implementation 'com.android.installreferrer:installreferrer:1.0'
8484
```
8585

@@ -184,7 +184,7 @@ Also, make sure that you have paid attention to the [Proguard settings](#sdk-pro
184184
-keep public class com.android.installreferrer.** { *; }
185185
```
186186

187-
This feature is supported if you are using **Adjust SDK v4.12.0 or above**.
187+
This feature is supported if you are using **Adjust SDK v4.12.1 or above**.
188188

189189
#### <a id="gps-intent"></a>Google Play Store intent
190190

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.12.0
1+
4.12.1

0 commit comments

Comments
 (0)