Skip to content

Commit

Permalink
Change BouncyCastle reference in Android. Add explicit bouncycastle i…
Browse files Browse the repository at this point in the history
…n Android, version used in Android Flexible client. (#753)

Issue:
Erro com Encrypt64 e Decrypt64 em Android
https://issues.genexus.com/viewissue.aspx?103924
  • Loading branch information
fpanizza authored Jul 27, 2023
1 parent 1f382d0 commit 30630fd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion> <!-- exclude bouncycastle from android -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -34,6 +38,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion> <!-- exclude bouncycastle from android -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -58,6 +66,13 @@
<artifactId>commons-io</artifactId>
<version>2.2</version>
</dependency>
<!-- add explicit bouncycastle in Android, version used in Android Flexible client -->
<!-- keep in sync version here and in Android Flexible client -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.65</version>
</dependency>

</dependencies>

Expand Down

0 comments on commit 30630fd

Please sign in to comment.