0

I have a Flutter application which communicates with an Hasura server and I'm doing it using the secret password. I am currently using an .env file with the required API (secret) keys and loading them with the provided Flutter methods, but I guess they are somehow added to the app binary so I would like to know if it can be reverse engineered when published. Does anybody know if this is a secure way to keep my API keys or I need to add authentication?

Alberto Méndez
  • 1,044
  • 14
  • 31

1 Answers1

0

If an API key can't be seen don't store it in your app. For more information see Securely Saving API Keys In Android (flutter) Apps

Alberto Méndez
  • 1,044
  • 14
  • 31