简体   繁体   中英

appbundle being generated with the empty String.fromEnvironment

I'm storing some settings in String.fromEnvironment('CONFIG_EX') , when I run the app in Debug or Profile mode everything works normally, but now I launched it on the PlayStore in Open Test and it's returning a 403 error and I realized that the compilation generated the empty variables.

it's more or less like this in my run settings:

--dart-define=CONFIG_EX=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

I'm generating my appbundle this way:

flutter build appbundle

Is there any way to generate this appbundle with the run settings?

You can extend build commands with extra parameters.

Android:

flutter build appbundle --dart-define=CONFIG_EX=xxx

iOS:

flutter build ios --dart-define=CONFIG_EX=xxx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM