How to manage secret keys in a Kotlin Multiplatform App.
Hi all, I'm creating a KMP App that uses Firebase Auth (
https://github.com/GitLiveApp/firebase-kotlin-sdk).
I've inserted google-services.json (android) and GoogleService-Info (iOS) into my .gitignore file. So in my public repository, this file remains secret.
I'm also using Info.plist to manage the GoogleSignIn GIDClientID.
I want to put the keys inside Info.plist file into a secret file or setting up environment variables.
How can I manage this kind of secrets in a Kotlin Multiplatform app?
Thank you all!