Closed dayaki closed 4 months ago
Thanks for this awesome package, I am just curious if it is possible to use my own naming convention for the json files? like
keys.dev.json
,keys.prod.json
?
For android, u can use flavor. Or use
project.ext.keyFiles = [
debug: 'path to env',
release: 'path to env'
]
For ios, u can create new scheme to switch env file. Or use configuration to switch env:
if ["${CONFIGURATION}" = "Release"]; then
# load env for release
else
# load env for debug
fi
awesome, got it to work.
Thanks for this awesome package, I am just curious if it is possible to use my own naming convention for the json files? like
keys.dev.json
,keys.prod.json
?