I want to add my JCE provider to the android project, I want to use Conscrypt as a basis. Explain how to add to the Conscrypt project. I try to create an android project and add all the files from the repository to it, but Android Studio swears at all that is possible. First I swore at the import, I fixed them. Now I can not compile due to the fact that there is not enough class NativeConstants. I didn’t find it all over the Internet, I don’t find it on the repository either.

  • tried to add the jar file as a library - Saidolim
  • I need exactly the source files because I want to change and supplement the implementation. - AndXor
  • What did you do with your JCE provider? can add your JCE provider as a library. - Saidolim
  • What did I do on the plan? I write in Java. Why, if I create a class for example MyJSSE extends Provider. I will put there my own implementation of algorithms and other things. As for example, it was done here android.googlesource.com/platform/external/conscrypt/+/master/…. It’s already a new JCE provider, mine. - AndXor

0