Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 4893441

Browse files
Release 6.1.5.
1 parent 0c835e4 commit 4893441

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:8.0.2'
10-
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22'
1110
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3"
1211
}
1312
}
1413

14+
plugins {
15+
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
16+
}
17+
1518
task clean(type: Delete) {
1619
delete rootProject.buildDir
1720
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF
1818
# org.gradle.parallel=true
1919
POM_GROUP_ID=com.ingenico.connect.gateway
2020
POM_ARTIFACT_ID=connect-sdk-client-android
21-
POM_VERSION=6.1.4
21+
POM_VERSION=6.1.5
2222
POM_NAME=connect-sdk-client-android
2323
POM_DESCRIPTION=SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Client API
2424
POM_URL=https://github.com/Ingenico-ePayments/connect-sdk-client-android

ingenicoconnect-sdk/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
plugins {
66
id 'com.android.library'
7-
id 'kotlin-android'
7+
id 'org.jetbrains.kotlin.android'
88
id 'signing'
99
id 'maven-publish'
1010
id 'org.sonarqube'
@@ -66,6 +66,8 @@ task sourcesJar(type: Jar) {
6666
}
6767

6868
task javadoc(type: Javadoc) {
69+
dependsOn "generateReleaseRFile"
70+
dependsOn "compileReleaseKotlin"
6971
failOnError false
7072
configurations.implementation.setCanBeResolved(true)
7173
source = android.sourceSets.main.java.sourceFiles

ingenicoconnect-sdk/src/main/java/com/ingenico/connect/gateway/sdk/client/android/sdk/configuration/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
public class Constants {
88

99
/** SDK version **/
10-
public final static String SDK_IDENTIFIER = "AndroidClientSDK/v6.1.4";
10+
public final static String SDK_IDENTIFIER = "AndroidClientSDK/v6.1.5";
1111

1212
/** SDK creator **/
1313
public final static String SDK_CREATOR = "Ingenico";

0 commit comments

Comments
 (0)