From 16b757da55b9e0fd931e7500606563615a7bbd3f Mon Sep 17 00:00:00 2001 From: Michael Obi Date: Wed, 7 Jul 2021 12:58:00 +0100 Subject: [PATCH 1/4] Use pinpad v1.0.8 Signed-off-by: Michael Obi --- paystack/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/paystack/build.gradle b/paystack/build.gradle index 3942dcc..3d6f08f 100644 --- a/paystack/build.gradle +++ b/paystack/build.gradle @@ -21,13 +21,12 @@ android { } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.5.0' implementation 'com.squareup.okhttp3:okhttp:3.14.9' implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'co.paystack.android.design.widget:pinpad:1.0.4' + implementation 'co.paystack.android.design.widget:pinpad:1.0.8' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7" From b0f770f54881ce6fa4ae6bb36cfd8fa82f981744 Mon Sep 17 00:00:00 2001 From: Michael Obi Date: Wed, 7 Jul 2021 12:58:42 +0100 Subject: [PATCH 2/4] Bump version to 3.1.3 Signed-off-by: Michael Obi --- build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 8deee8e..410dc76 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext.kotlin_version = '1.3.72' repositories { - jcenter() + mavenCentral() google() } dependencies { @@ -17,7 +17,6 @@ buildscript { allprojects { repositories { - jcenter() google() mavenCentral() } @@ -27,8 +26,8 @@ ext { compileSdkVersion = 29 minSdkVersion = 16 targetSdkVersion = 29 - versionCode = 18 + versionCode = 19 buildToolsVersion = "29.0.2" - versionName = "3.1.2" + versionName = "3.1.3" } \ No newline at end of file From 727844b5c3977f7a2cc17c4aaf254e8a065f0a56 Mon Sep 17 00:00:00 2001 From: Michael Obi Date: Wed, 7 Jul 2021 16:58:40 +0100 Subject: [PATCH 3/4] Bump version to 3.1.3 Signed-off-by: Michael Obi --- build.gradle | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 410dc76..3b0272a 100644 --- a/build.gradle +++ b/build.gradle @@ -29,5 +29,5 @@ ext { versionCode = 19 buildToolsVersion = "29.0.2" - versionName = "3.1.3" + versionName = VERSION_NAME } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 6fa3014..dc4304e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,7 +23,7 @@ android.enableJetifier=true android.useAndroidX=true GROUP=co.paystack.android -VERSION_NAME=3.1.2 +VERSION_NAME=3.1.3 POM_DESCRIPTION=Android SDK for Paystack POM_URL=https://github.com/PaystackHQ/paystack-android POM_SCM_URL=https://github.com/PaystackHQ/paystack-android From 634945d8b07f8f8f6c6505ca9c9b2eace8db3e84 Mon Sep 17 00:00:00 2001 From: Michael Obi Date: Wed, 28 Jul 2021 12:24:54 +0100 Subject: [PATCH 4/4] Add maven central repository Signed-off-by: Michael Obi --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 3b0272a..22c938e 100644 --- a/build.gradle +++ b/build.gradle @@ -19,6 +19,8 @@ allprojects { repositories { google() mavenCentral() + + maven { url "https://oss.sonatype.org/content/groups/staging/" } } }