

-env.sourceMap - creates inline source maps.-env.report - creates a Webpack report inside a report folder in the root folder.-env.uglify - provides basic obfuscation and smaller app size.This will reduce the app size when using the -aab option. so files allowing the native build to split them per architecture. pileSnapshot- compiles the static assets produced by -env.snapshot into.-env.snapshot- creates a V8 Snapshot decreasing the app start time (only for release builds for Android).-env.aot - creates Ahead-Of-Time build (Angular only).-env.* - Specifies additional flags that the bundler may process.If the specified value is existing directory, the original file name will be used. If it points to a non-existent directory path, it will be created. -copy-to - Specifies the file path where the built.You need to specify all -key-store-* options.

You can use the -key-store-* options along with -release to produce a signed release build. -key-store-alias-password - Provides the password for the alias specified with -key-store-alias-password.-key-store-alias - Provides the alias for the keystore file specified with -key-store-path.-key-store-password - Provides the password for the keystore file specified with -key-store-path.-key-store-path - Specifies the file path to the keystore file (P12) which you want to use to code sign your APK.When set, you must also specify the -key-store-* options. -release - If set, produces a release build.

