codeplay-common 1.7.3 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -511,10 +511,10 @@ function validateAndroidBuildOptions() {
|
|
|
511
511
|
|
|
512
512
|
const buildOptions = config.android?.buildOptions;
|
|
513
513
|
|
|
514
|
-
|
|
514
|
+
if (!buildOptions) {
|
|
515
515
|
console.log('❌ Missing android.buildOptions in capacitor.config.json.');
|
|
516
516
|
process.exit(1);
|
|
517
|
-
}
|
|
517
|
+
}
|
|
518
518
|
|
|
519
519
|
const requiredProps = [
|
|
520
520
|
'keystorePath',
|
|
@@ -528,7 +528,7 @@ function validateAndroidBuildOptions() {
|
|
|
528
528
|
const missing = requiredProps.filter(prop => !buildOptions[prop]);
|
|
529
529
|
|
|
530
530
|
if (missing.length > 0) {
|
|
531
|
-
console.log('❌ Missing android.buildOptions in capacitor.config.json.');
|
|
531
|
+
console.log('❌ Missing properties android.buildOptions in capacitor.config.json.');
|
|
532
532
|
process.exit(1);
|
|
533
533
|
}
|
|
534
534
|
|