I want to share my keychain between 2 apps with react-native-keychain:
I have App1 (developed in a programming language) which sets the keychain with multiple key-value pairs. And I have App2 (react native) where I have to retrieve a specified field from the keychain, but I don't know how.
I found this How to save Multiple Key Values using react-native-keychain? but I cannot use getGenericPassword because the service is already set by the App1 with other value than the key, neither getInternetCredentials because the server is not set by the App1. What would be the solution for this? Thanks!