Skip to content

Commit 323cd93

Browse files
authored
Merge pull request #469 from adjust/v4260
Version 4.26.0
2 parents 0e7bc54 + e343112 commit 323cd93

File tree

87 files changed

+2622
-1444
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2622
-1444
lines changed

Adjust/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ ext {
99
coreMinSdkVersion = 9
1010
coreCompileSdkVersion = 30
1111
coreTargetSdkVersion = 30
12-
coreVersionName = '4.25.0'
12+
coreVersionName = '4.26.0'
1313
defaultVersionCode = 1
1414

1515
// POM.
1616
adjustGroupId = 'com.adjust.sdk'
1717
}
1818

1919
buildscript {
20-
ext.kotlin_version = '1.4.0'
20+
ext.kotlin_version = '1.4.21'
2121

2222
repositories {
2323
jcenter()

Adjust/example-app-fbpixel/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies {
2424
implementation 'androidx.appcompat:appcompat:1.2.0'
2525
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
2626
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
27-
implementation 'com.android.installreferrer:installreferrer:2.1'
27+
implementation 'com.android.installreferrer:installreferrer:2.2'
2828

2929
implementation project(':sdk-core')
3030
implementation project(':sdk-plugin-webbridge')

Adjust/example-app-fbpixel/src/main/assets/AdjustExample-FbPixel.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
.logLine { border-bottom:1px solid #ccc; padding:4px 2px; font-family:courier; font-size:11px; }
1010
</style>
1111
<script type="text/javascript" src="adjust_event.js"></script>
12+
<script type="text/javascript" src="adjust_third_party_sharing.js"></script>
1213
<script type="text/javascript" src="adjust_config.js"></script>
1314
<script type="text/javascript" src="adjust.js"></script>
1415
</head>

Adjust/example-app-java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation 'androidx.appcompat:appcompat:1.2.0'
3030
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
3131
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
32-
implementation 'com.android.installreferrer:installreferrer:2.1'
32+
implementation 'com.android.installreferrer:installreferrer:2.2'
3333

3434
implementation project(':sdk-core')
3535
}

Adjust/example-app-keyboard/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation 'androidx.appcompat:appcompat:1.2.0'
3030
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
3131
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
32-
implementation 'com.android.installreferrer:installreferrer:2.1'
32+
implementation 'com.android.installreferrer:installreferrer:2.2'
3333

3434
implementation project(':sdk-core')
3535
}

Adjust/example-app-kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation 'androidx.appcompat:appcompat:1.2.0'
3030
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
3131
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
32-
implementation 'com.android.installreferrer:installreferrer:2.1'
32+
implementation 'com.android.installreferrer:installreferrer:2.2'
3333

3434
implementation project(':sdk-core')
3535
}

Adjust/example-app-tv/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation 'androidx.appcompat:appcompat:1.2.0'
3030
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
3131
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
32-
implementation 'com.android.installreferrer:installreferrer:2.1'
32+
implementation 'com.android.installreferrer:installreferrer:2.2'
3333

3434
implementation project(':sdk-core')
3535
}

Adjust/example-app-webbridge/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
implementation 'androidx.appcompat:appcompat:1.2.0'
2424
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
2525
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
26-
implementation 'com.android.installreferrer:installreferrer:2.1'
26+
implementation 'com.android.installreferrer:installreferrer:2.2'
2727

2828
implementation project(':sdk-core')
2929
implementation project(':sdk-plugin-webbridge')

Adjust/example-app-webbridge/src/main/assets/AdjustExample-WebView.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
.logLine { border-bottom:1px solid #ccc; padding:4px 2px; font-family:courier; font-size:11px; }
1010
</style>
1111
<script type="text/javascript" src="adjust_event.js"></script>
12+
<script type="text/javascript" src="adjust_third_party_sharing.js"></script>
1213
<script type="text/javascript" src="adjust_config.js"></script>
1314
<script type="text/javascript" src="adjust.js"></script>
1415
</head>

Adjust/sdk-core/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ android {
1919
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2020
}
2121
}
22-
2322
}
2423

2524
dependencies {

0 commit comments

Comments
 (0)