codeplay-common 1.5.2 → 1.5.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.
|
@@ -12,7 +12,7 @@ const requiredPlugins = [
|
|
|
12
12
|
{ pattern: /localNotification-(\d+\.\d+)\.js$/, minVersion: '2.2', required: true },
|
|
13
13
|
{ pattern: /localNotification_AppSettings-(\d+\.\d+)\.js$/, minVersion: '1.0', required: true },
|
|
14
14
|
{ pattern: /onesignal-(\d+\.\d+)\.js$/, minVersion: '2.1', required: true },
|
|
15
|
-
{ pattern: /saveToGalleryAndSaveAnyFile-(\d+\.\d+)(-ios)?\.js$/, minVersion: '2.
|
|
15
|
+
{ pattern: /saveToGalleryAndSaveAnyFile-(\d+\.\d+)(-ios)?\.js$/, minVersion: '2.4', required: true },
|
|
16
16
|
{ pattern: /Ads[\/\\]IAP-(\d+\.\d+)$/, minVersion: '2.1', isFolder: true },
|
|
17
17
|
{ pattern: /Ads[\/\\]admob-emi-(\d+\.\d+)\.js$/, minVersion: '2.6', required: true }
|
|
18
18
|
];
|
|
@@ -110,8 +110,8 @@ const saveToGalleryAndSaveFileCheck_iOS = () => {
|
|
|
110
110
|
const matches = content.match(IOS_FILE_REGEX);
|
|
111
111
|
if (matches) {
|
|
112
112
|
iosImportFound = true;
|
|
113
|
-
console.error(`\n❌❌❌ BIG ERROR: iOS-specific import detected in: ${fullPath}`);
|
|
114
|
-
console.error(`🔍 Matched: ${matches[0]}\n`);
|
|
113
|
+
//console.error(`\n❌❌❌ BIG ERROR: iOS-specific import detected in: ${fullPath}`);
|
|
114
|
+
//console.error(`🔍 Matched: ${matches[0]}\n`);
|
|
115
115
|
if (!isMac) {
|
|
116
116
|
console.error(`🚫 STOPPED: This file should not be imported in Android/Windows/Linux builds.\n`);
|
|
117
117
|
process.exit(1);
|