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
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?
The text was updated successfully, but these errors were encountered:
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
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
?The text was updated successfully, but these errors were encountered: