Fix warning spam
parent
4cf7914f3b
commit
d55e46d644
|
|
@ -49,7 +49,7 @@ inputs:
|
||||||
description: 'The android versionCode'
|
description: 'The android versionCode'
|
||||||
androidAppBundle:
|
androidAppBundle:
|
||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: ''
|
||||||
description: '[Deprecated] Use androidExportType instead. Whether to build .aab instead of .apk'
|
description: '[Deprecated] Use androidExportType instead. Whether to build .aab instead of .apk'
|
||||||
androidExportType:
|
androidExportType:
|
||||||
required: false
|
required: false
|
||||||
|
|
|
||||||
|
|
@ -6614,7 +6614,7 @@ class Input {
|
||||||
static get androidAppBundle() {
|
static get androidAppBundle() {
|
||||||
// Only throw warning if defined
|
// Only throw warning if defined
|
||||||
let input = Input.getInput('androidAppBundle');
|
let input = Input.getInput('androidAppBundle');
|
||||||
if (input !== undefined) {
|
if (input !== '') {
|
||||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -145,7 +145,7 @@ class Input {
|
||||||
static get androidAppBundle(): boolean {
|
static get androidAppBundle(): boolean {
|
||||||
// Only throw warning if defined
|
// Only throw warning if defined
|
||||||
let input = Input.getInput('androidAppBundle');
|
let input = Input.getInput('androidAppBundle');
|
||||||
if (input !== undefined) {
|
if (input !== '') {
|
||||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||||
} else {
|
} else {
|
||||||
input = 'false';
|
input = 'false';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue