Skip to content

Commit e975ab6

Browse files
authored
Merge pull request #631 from adjust/v510
Version 5.1.0
2 parents 942960d + 2dd75da commit e975ab6

File tree

32 files changed

+97
-57
lines changed

32 files changed

+97
-57
lines changed

Adjust/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ subprojects {
77
ext {
88
// Android config.
99
coreMinSdkVersion = 21
10-
coreCompileSdkVersion = 34
11-
coreTargetSdkVersion = 34
12-
coreVersionName = '5.0.2'
10+
coreCompileSdkVersion = 35
11+
coreTargetSdkVersion = 35
12+
coreVersionName = '5.1.0'
1313
defaultVersionCode = 1
1414
webbridgeMinSdkVersion = 21
1515
samsungReferrerMinSdkVersion = 21
@@ -21,14 +21,14 @@ ext {
2121
}
2222

2323
buildscript {
24-
ext.kotlin_version = '1.7.10'
24+
ext.kotlin_version = '2.1.0'
2525

2626
repositories {
2727
mavenCentral()
2828
google()
2929
}
3030
dependencies {
31-
classpath 'com.android.tools.build:gradle:8.1.4'
31+
classpath 'com.android.tools.build:gradle:8.8.0'
3232

3333
// NOTE: Do not place your application dependencies here; they belong
3434
// in the individual module build.gradle files.

Adjust/examples/example-app-fbpixel/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdk 34
4+
compileSdk 35
55

66
defaultConfig {
77
applicationId "com.adjust.examples"
88
minSdkVersion 21
9-
targetSdkVersion 34
9+
targetSdkVersion 35
1010
versionCode 1
1111
versionName "1.0"
1212
}

Adjust/examples/example-app-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
}
88

99
android {
10-
compileSdk 34
10+
compileSdk 35
1111

1212
defaultConfig {
1313
applicationId "com.adjust.examples"
1414
minSdkVersion 21
15-
targetSdkVersion 34
15+
targetSdkVersion 35
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/examples/example-app-keyboard/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
}
88

99
android {
10-
compileSdk 34
10+
compileSdk 35
1111

1212
defaultConfig {
1313
applicationId "com.adjust.examples.keyboard"
1414
minSdkVersion 21
15-
targetSdkVersion 34
15+
targetSdkVersion 35
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/examples/example-app-kotlin/build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33
android {
4-
compileSdk 34
4+
compileSdk 35
55

66
defaultConfig {
77
applicationId "com.adjust.examples"
88
minSdkVersion 21
9-
targetSdkVersion 34
9+
targetSdkVersion 35
1010
versionCode 1
1111
versionName "1.0"
1212

@@ -23,6 +23,11 @@ android {
2323
sourceCompatibility 1.8
2424
targetCompatibility 1.8
2525
}
26+
27+
kotlinOptions {
28+
jvmTarget = '1.8'
29+
}
30+
2631
namespace 'com.adjust.examples'
2732
}
2833

Adjust/examples/example-app-tv/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
}
88

99
android {
10-
compileSdk 34
10+
compileSdk 35
1111

1212
defaultConfig {
1313
applicationId "com.adjust.examples"
1414
minSdkVersion 21
15-
targetSdkVersion 34
15+
targetSdkVersion 35
1616
versionCode 1
1717
versionName "1.0"
1818
}

Adjust/examples/example-app-webbridge/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdk 34
4+
compileSdk 35
55

66
defaultConfig {
77
applicationId "com.example.examples"
88
minSdkVersion 21
9-
targetSdkVersion 34
9+
targetSdkVersion 35
1010
versionCode 1
1111
versionName "1.0"
1212
}

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ <h1 style="width:400px;height:35px;text-align:center;">Adjust Web View SDK Demo
2525
'Campaign = ' + attribution.campaign + '\n' +
2626
'Adgroup = ' + attribution.adgroup + '\n' +
2727
'Creative = ' + attribution.creative + '\n' +
28-
'Click label = ' + attribution.clickLabel);
28+
'Click label = ' + attribution.clickLabel + '\n' +
29+
'Json response = ' + JSON.stringify(attribution.jsonResponse));
2930
}
3031

3132
function eventSuccessCallback(eventSuccess) {
@@ -186,7 +187,8 @@ <h1 style="width:400px;height:35px;text-align:center;">Adjust Web View SDK Demo
186187
'Campaign = ' + attribution.campaign + '\n' +
187188
'Adgroup = ' + attribution.adgroup + '\n' +
188189
'Creative = ' + attribution.creative + '\n' +
189-
'Click label = ' + attribution.clickLabel);
190+
'Click label = ' + attribution.clickLabel + '\n' +
191+
'Json response = ' + JSON.stringify(attribution.jsonResponse));
190192
});
191193
}
192194
}

Adjust/gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ org.gradle.parallel=true
2222
org.gradle.configureondemand=true
2323
android.useAndroidX=true
2424
android.enableJetifier=true
25-
android.defaults.buildfeatures.buildconfig=true
26-
android.enableR8.fullMode=false
25+
android.enableR8.fullMode=true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Oct 06 12:16:52 CEST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)