-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated copyright * release v1.1.0 * release v1.1.0 * updated deps --------- Co-authored-by: MatusChomaGetnetEurope <[email protected]> Co-authored-by: matus.choma <[email protected]>
- Loading branch information
1 parent
1d7e243
commit 2e82152
Showing
78 changed files
with
614 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# | ||
# Copyright © 2022 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. All rights reserved. | ||
# Copyright © 2023 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. | ||
# You may not use this file except in compliance with the License which is available at https://mit-license.org/ | ||
# | ||
|
||
#Tue Nov 20 10:58:56 CET 2018 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,56 @@ | ||
/* | ||
* Copyright © 2022 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. All rights reserved. | ||
* Copyright © 2023 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. | ||
* You may not use this file except in compliance with the License which is available at https://mit-license.org/ | ||
*/ | ||
|
||
dependencies { | ||
implementation 'androidx.appcompat:appcompat:1.4.1' | ||
implementation 'com.google.android.material:material:1.5.0' | ||
implementation 'androidx.activity:activity-ktx:1.4.0' | ||
implementation 'androidx.fragment:fragment-ktx:1.4.0' | ||
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' | ||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' | ||
def kotlinVersion = "1.8.20" | ||
def appCompat = "1.6.1" | ||
def material = "1.8.0" | ||
def actvityKtx = "1.7.1" | ||
def fragmentKtx = "1.5.7" | ||
def rxKotlin = "2.2.0" | ||
def rxAndroid = "2.1.0" | ||
def constraint = "2.1.4" | ||
def coreKtx = "1.10.0" | ||
def lifecycleRuntimeKtx = "2.2.0" | ||
def camerax = "1.0.2" | ||
|
||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' | ||
implementation 'io.reactivex.rxjava2:rxkotlin:2.2.0' | ||
implementation "androidx.appcompat:appcompat:$appCompat" | ||
implementation "com.google.android.material:material:$material" | ||
implementation "androidx.activity:activity-ktx:$actvityKtx" | ||
implementation "androidx.fragment:fragment-ktx:$fragmentKtx" | ||
implementation "androidx.localbroadcastmanager:localbroadcastmanager:1.0.0" | ||
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" | ||
|
||
implementation 'com.squareup.retrofit2:retrofit:2.6.1' | ||
implementation 'com.squareup.retrofit2:converter-simplexml:2.3.0' | ||
implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0' | ||
implementation "io.reactivex.rxjava2:rxkotlin:$rxKotlin" | ||
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroid" | ||
|
||
implementation "com.squareup.retrofit2:retrofit:2.6.1" | ||
implementation "com.squareup.retrofit2:converter-simplexml:2.3.0" | ||
implementation "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0" | ||
implementation "com.squareup.okhttp3:logging-interceptor:3.11.0" | ||
implementation('org.simpleframework:simple-xml:2.7.1') { | ||
exclude group: 'stax', module: 'stax-api' | ||
exclude group: 'xpp3', module: 'xpp3' | ||
} | ||
implementation 'com.scottyab:rootbeer-lib:0.1.0' | ||
implementation "com.scottyab:rootbeer-lib:0.1.0" | ||
implementation "com.github.chuckerteam.chucker:library-no-op:3.5.2" | ||
|
||
def kotlin_version = '1.0.2' | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | ||
implementation 'androidx.core:core-ktx:1.7.0' | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.2' | ||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2' | ||
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0' | ||
implementation 'com.jakewharton.timber:timber:4.7.1' | ||
def camerax_version = '1.0.2' | ||
implementation "androidx.camera:camera-camera2:$camerax_version" | ||
implementation "androidx.camera:camera-lifecycle:$camerax_version" | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion" | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" | ||
implementation "androidx.core:core-ktx:$coreKtx" | ||
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleRuntimeKtx" | ||
implementation "androidx.constraintlayout:constraintlayout:$constraint" | ||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2" | ||
implementation "com.jakewharton.timber:timber:4.7.1" | ||
implementation "androidx.camera:camera-camera2:$camerax" | ||
implementation "androidx.camera:camera-lifecycle:$camerax" | ||
implementation "androidx.camera:camera-view:1.0.0-alpha32" | ||
implementation "com.google.android.gms:play-services-mlkit-text-recognition:17.0.0" | ||
implementation 'org.iban4j:iban4j:3.2.1' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
implementation 'com.google.android.gms:play-services-vision:17.0.2' | ||
implementation 'androidx.browser:browser:1.0.0' | ||
} | ||
implementation "org.iban4j:iban4j:3.2.1" | ||
implementation "androidx.legacy:legacy-support-v4:1.0.0" | ||
implementation "com.google.android.gms:play-services-vision:17.0.2" | ||
implementation "androidx.browser:browser:1.4.0" | ||
implementation 'com.github.BasemNasr:EasyMediaPicker:v0.1.4' | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 2 additions & 1 deletion
3
app/src/androidTest/java/com/sdkpay/ecom/examples/ExampleInstrumentedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/AnimatedCardFieldActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/CardFieldActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/CardFieldFragmentImplFragment.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
/* | ||
* Copyright © 2022 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. All rights reserved. | ||
* Copyright © 2023 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U. | ||
* You may not use this file except in compliance with the License which is available at https://mit-license.org/ | ||
*/ | ||
|
||
package com.sdkpay.ecom.examples; | ||
|
||
public class Constants { | ||
public final static String URL_EE_TEST = "https://api-test.getneteurope.com"; | ||
public final static int REQUEST_TIMEOUT = 30; | ||
} | ||
} |
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/KotlinAnimatedCardFieldActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/KotlinCardFieldActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/KotlinCardFieldFragmentImplActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/KotlinLoyaltyCardFieldActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/KotlinTokenAnimatedCardFieldActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/ResponseHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
app/src/main/java/com/sdkpay/ecom/examples/SignatureHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.