Caio Faustino

Results 53 comments of Caio Faustino

can you try to `exclude(group: "com.adyen.checkout", module:"3ds2")`

Maybe then try to build with only `implementation "com.adyen.checkout:3ds2:4.4.0"`, that would also tell me something.

So apparently another one of your libs is adding `jetified-bcprov-jdk15to18-1.69` as an internal dependency. You can run `./gradlew app:dependencies` and check the output to see if you can find any...

I see you already have bouncycastle directly as your dependency. Maybe it's a conflict because we use `jdk15to18` and you use `jdk15on`. Can you try this maybe? It should exclude...

No, it should be outside of the depependencies bracket: ``` dependencies { ... } configurations.implementation { exclude group: 'org.bouncycastle, module: 'bcprov-jdk15to18' } ```

No not at the moment.

Thx a lot for the detailed investigation and report! We will look into fixing this for the next release.

We have moved this implementation over to the Components repository for the next release. You will be able to get this as a standalone CSE package with some minor API...

Not sure if there is a reason behind the wording, but changing this would break the public API for a lot of people using the library. Failure sees to be...

This is probably not a good implementation, but I'm trying to see if I could have a flow that exposes an editable queue. Each collect suspends and takes some time...