You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mobile-Passcode currently binds developers to use the encryption provided by the library itself (using JNI).
Future Scope
Separating .so into another module to make the encryption mechanism pluggable. This will also help to reduce the library size for someone who don't want to use the default encryption mechanism and want to use their own logic.
Dependencies will somewhat look like:
implementation '...mobile-passcode-core'
implementation '...mobile-passcode-encryption' // include if you want to use default encryption.
The text was updated successfully, but these errors were encountered:
Current
Mobile-Passcode currently binds developers to use the encryption provided by the library itself (using JNI).
Future Scope
Separating
.so
into another module to make the encryption mechanism pluggable. This will also help to reduce the library size for someone who don't want to use the default encryption mechanism and want to use their own logic.Dependencies will somewhat look like:
The text was updated successfully, but these errors were encountered: