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
Im developing a private pod and which has static AuthKeys for API authentication inside my pod.
For the security purposes i wanted to store these keys inside the keychain and wanted to use the feature of cocoapods-keys.
I would be using .env file to have these keys and upon pod install these would be added to keychain, but now i wanted to know how can i use these keys inside my private pod.
Any help would be really appreciated.
Thanks.
The text was updated successfully, but these errors were encountered:
.env file support was added here: #106 But this bypasses the keychain, so it doesn't sound like what you want. As for the private pod, it's probably doable but an easier solution would be for your pod to accept the keys as arguments/parameters, and then inject them in from the app. Otherwise, the pod would need to set up a dependency on the Keys pod, which gets tricky because that pod is only generated in a CocoaPods install hook. I hope that helps!
Hi all,
Im developing a private pod and which has static AuthKeys for API authentication inside my pod.
For the security purposes i wanted to store these keys inside the keychain and wanted to use the feature of cocoapods-keys.
I would be using .env file to have these keys and upon pod install these would be added to keychain, but now i wanted to know how can i use these keys inside my private pod.
Any help would be really appreciated.
Thanks.
The text was updated successfully, but these errors were encountered: