diff --git a/bank-sdk/sdk/src/main/java/net/gini/android/bank/sdk/GiniBank.kt b/bank-sdk/sdk/src/main/java/net/gini/android/bank/sdk/GiniBank.kt index 8773920a96..e40bc827a6 100644 --- a/bank-sdk/sdk/src/main/java/net/gini/android/bank/sdk/GiniBank.kt +++ b/bank-sdk/sdk/src/main/java/net/gini/android/bank/sdk/GiniBank.kt @@ -140,9 +140,9 @@ object GiniBank { * * Please provide the required transfer summary to improve the future extraction accuracy. * - * Please follow the recommendations below: - * - Please make sure to call this method before calling [releaseCapture] if the user has completed TAN verification. - * - Please provide values for all necessary fields, including those that were not extracted. + * Follow the recommendations below: + * - Make sure to call this method before calling [releaseCapture] if the user has completed TAN verification. + * - Provide values for all necessary fields, including those that were not extracted. * - Provide the final data approved by the user (and not the initially extracted only). * - Send the transfer summary after TAN verification and provide the extraction values the user has used. * @@ -170,9 +170,9 @@ object GiniBank { * Frees up resources used by the capture flow. * * Please provide the required transfer summary to improve the future extraction accuracy. - * Please follow the recommendations below: + * Follow the recommendations below: * - * - Please provide values for all necessary fields, including those that were not extracted. + * - Provide values for all necessary fields, including those that were not extracted. * - Provide the final data approved by the user (and not the initially extracted only). * - Do cleanup after TAN verification.to clean up and provide the extraction values the user has used. * @@ -184,7 +184,7 @@ object GiniBank { * @param bic bank identification code * @param amount accepts extracted amount and currency * - * @deprecated Please use [sendTransferSummary] to provide the required transfer summary first (if the user has completed TAN verification) and then [releaseCapture] to let the SDK free up used resources. + * @deprecated Use [sendTransferSummary] to provide the required transfer summary first (if the user has completed TAN verification) and then [releaseCapture] to let the SDK free up used resources. */ @Deprecated( "Please use sendTransferSummary() to provide the required transfer summary first (if the user has completed TAN verification) and then releaseCapture() to let the SDK free up used resources.", diff --git a/capture-sdk/sdk/src/main/java/net/gini/android/capture/GiniCapture.java b/capture-sdk/sdk/src/main/java/net/gini/android/capture/GiniCapture.java index 643aecec22..cc142f3e86 100644 --- a/capture-sdk/sdk/src/main/java/net/gini/android/capture/GiniCapture.java +++ b/capture-sdk/sdk/src/main/java/net/gini/android/capture/GiniCapture.java @@ -189,10 +189,10 @@ public static synchronized Builder newInstance(final Context context) { * Provides transfer summary to Gini. * *

Please provide the required transfer summary to improve the future extraction accuracy. - * Please follow the recommendations below: + * Follow the recommendations below: *

@@ -260,10 +260,10 @@ public void cancelled() { * Destroys the {@link GiniCapture} instance and frees up used resources. * *

Please provide the required transfer summary to improve the future extraction accuracy. - * Please follow the recommendations below: + * Follow the recommendations below: * *

@@ -275,7 +275,7 @@ public void cancelled() { * @param iban international bank account * @param bic bank identification code * @param amount accepts extracted amount and currency - * @deprecated Please use {@link #sendTransferSummary(String, String, String, String, String, Amount)} to provide the required transfer summary first (if the user has completed TAN verification) and then {@link #cleanup(Context)} to let the SDK free up used resources. + * @deprecated Use {@link #sendTransferSummary(String, String, String, String, String, Amount)} to provide the required transfer summary first (if the user has completed TAN verification) and then {@link #cleanup(Context)} to let the SDK free up used resources. * */