Create weblets with Wavi, the fast, simple microsite maker that allows you to instantly publish content like blogs, portfolios, code samples, and more…
Is your feature request related to a problem? Please describe.
Using .env files should be included in app while building. But when we decompile apps, we may get the data from the built apk. This may lead to data-breach/app compromise.
Describe the solution you'd like
Using envied may help in sorting this issue. The env data will get encoded/obfuscated during build time.
Describe alternatives you've considered
Using --dart-define/--dart-define-from-file also works.
Additional context
This is the current result of using env.
Please don't encourage using .env files for practices too.
Is your feature request related to a problem? Please describe.
Using
.env
files should be included in app while building. But when we decompile apps, we may get the data from the built apk. This may lead to data-breach/app compromise.Describe the solution you'd like
Using
envied
may help in sorting this issue. The env data will get encoded/obfuscated during build time.Describe alternatives you've considered
Using
--dart-define
/--dart-define-from-file
also works.Additional context
This is the current result of using env.
Please don't encourage using
.env
files for practices too.