This repository was archived by the owner on Mar 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/main/java/com/ingenico/connect/gateway/sdk/client/android/sdk/configuration Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff 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+
1518task clean (type : Delete ) {
1619 delete rootProject. buildDir
1720}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF
1818# org.gradle.parallel=true
1919POM_GROUP_ID =com.ingenico.connect.gateway
2020POM_ARTIFACT_ID =connect-sdk-client-android
21- POM_VERSION =6.1.4
21+ POM_VERSION =6.1.5
2222POM_NAME =connect-sdk-client-android
2323POM_DESCRIPTION =SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Client API
2424POM_URL =https://github.com/Ingenico-ePayments/connect-sdk-client-android
Original file line number Diff line number Diff line change 44
55plugins {
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
6868task javadoc (type : Javadoc ) {
69+ dependsOn " generateReleaseRFile"
70+ dependsOn " compileReleaseKotlin"
6971 failOnError false
7072 configurations. implementation. setCanBeResolved(true )
7173 source = android. sourceSets. main. java. sourceFiles
Original file line number Diff line number Diff line change 77public 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" ;
You can’t perform that action at this time.
0 commit comments