https://kotlinlang.org logo
Title
e

Elizabeth Mezias

06/02/2020, 1:42 AM
Build configuration question… Do you know any tools or maybe a good strategy for distributing app keys, license strings and similar build variables to engineers on the team in a secure manner? A password protected file on a shared volume is one way of doing it. Is there a better way? Please share what works for you.
g

gammax

06/02/2020, 7:38 AM
Ideally you should not distribute secrets. Your CI should handle them and make them available only when needed. If you use Github Actions for example, you can use this feature
1
e

Elizabeth Mezias

06/02/2020, 2:11 PM
In our app, secrets are needed for developer builds, different keys for different build types (and flavors). Thanks for the links. Does it work with Bitrise?