Add Android Build Settings

This commit is contained in:
David Finol
2020-07-05 20:41:21 -05:00
committed by Webber Takken
parent 3523c6a934
commit 6ece6447b2
14 changed files with 307 additions and 6 deletions

View File

@@ -301,6 +301,50 @@ Configure the android `versionCode`.
When not specified, the version code is generated from the version using the `major * 1000000 + minor * 1000 + patch` scheme;
#### androidAppBundle
Set this flag to `true` to build '.aab' instead of '.apk'.
_**required:** `false`_
_**default:** `false`_
#### androidKeystoreName
Configure the android `keystoreName`.
_**required:** `false`_
_**default:** ""_
#### androidKeystoreBase64
Configure the base64 contents of the android keystore file.
The contents will be decoded from base64 with `echo $androidKeystoreBase64 | base64 --decode > $androidKeystoreName`;
_**required:** `false`_
_**default:** ""_
#### androidKeystorePass
Configure the android `keystorePass`.
_**required:** `false`_
_**default:** ""_
#### androidKeyaliasName
Configure the android `keyaliasName`.
_**required:** `false`_
_**default:** ""_
#### androidKeyaliasPass
Configure the android `keyaliasPass`.
_**required:** `false`_
_**default:** ""_
#### allowDirtyBuild
Allows the branch of the build to be dirty, and still generate the build.