Error building cordova project

created a bypass function, have to reset, let it fail first then add the function to continue to run.

app/.meteor/local/cordova-build/node_modules/cordova-common/src/FileUpdater.js

function copyRecursiveSync(source, target) {
  // Resolve the paths inside the function
  const resolvedSource = path.resolve(source);
  const resolvedTarget = path.resolve(target);
  const stats = fs.statSync(resolvedSource);
  if (stats.isDirectory()) {
    if (!fs.existsSync(resolvedTarget)) {
      fs.mkdirSync(resolvedTarget, { recursive: true });
    }
    const files = fs.readdirSync(resolvedSource);
    files.forEach(file => {
      const srcPath = path.join(resolvedSource, file);
      const destPath = path.join(resolvedTarget, file);
      copyRecursiveSync(srcPath, destPath);
    });
  } else {
    const parentDir = path.dirname(resolvedTarget);
    if (!fs.existsSync(parentDir)) {
      fs.mkdirSync(parentDir, { recursive: true });
    }
    fs.copyFileSync(resolvedSource, resolvedTarget);
  }
}
copyRecursiveSync(path.join(rootDir, sourcePath), targetFullPath);

// fs.cpSync(path.join(rootDir, sourcePath), targetFullPath, { recursive: true });
copyRecursiveSync(path.join(rootDir, sourcePath), targetFullPath);
2 Likes

Hopefully, your bypass function @wadebuildotto is helping others unblock their setups.

What I’d like to try is to force a specific dependency version, even for transitive ones. Have you tried using resolutions in Yarn or npm-force-resolutions with NPM? Newer NPM versions have overrides enabled, but Node 14.x doesn’t come with that NPM version.

Using something like this might let you force a dependency fix:

"resolutions": {  
  "cordova-common": "5.0.0"  
}  

You’ll need to add this to .meteor/local/cordova-build/package.json and reinstall the dependencies. Again, if this works might require a script for you to save your time each time you clear the cordova context.

Can anyone try this? If I get some time, I’ll test this. If this is a working approach we may introduce a fix for 2.x. This seems to be a sudden issue for all Meteor 2.x users, which might be important.

A workaround solution

@wadebuildotto’s suggestion is a workable approach, so try that. To make it easier, I’ve prepared a script for UNIX-like systems:

curl -o .meteor/local/cordova-build/node_modules/cordova-common/src/FileUpdater.js https://gist.githubusercontent.com/nachocodoner/f05359529b8d0f9899051cb7c85d9f78/raw/e2a48d7802423d3ad4d36897c48dd6a6377447d4/FileUpdater.js

Run this in the root of your Meteor app after encountering the error for the first time, as mentioned. If you clean .meteor/local, you’ll likely need to run it again.


Apart from that testing, I spent some time looking for a fix for this issue. It’s true that the cordova-build context in 2.16 (at least initially) doesn’t include a package.json file to use the resolutions strategy. I tried using resolutions, but it didn’t work as expected.

I could have tested more, but I decided to try it directly in the Meteor core. While debugging, I ran into some issues but haven’t found a quick solution yet.

I’ll discuss this with the team as this seems critical for Meteor 2.14 onward users, but I want to clarify a few things. In Meteor 2.x, we were limited by Node 14. To address Cordova issues (e.g., newer SDK requirements), Meteor upgraded Cordova to the latest versions, which require Node 16+. These upgrades worked well until now.

The sudden issue is due to a patch applied to a library used by Meteor 2.x directly and indirectly through other Cordova dependencies. Since the library targets Node 16, it uses a newer API on the patch. The challenge with a patch is that it installs the latest version automatically unless pinned, which isn’t a straightforward task at least so far.

Meteor 3 avoids these issues, making migration to the latest version essential, even though it can be challenging. Similar issues may arise in the future.

4 Likes

Thank you for the detailed explanation and for providing the script! It’s really helpful to have a quick workaround while we deal with this issue. I really appreciate the time and effort you put into investigating this issue and preparing a fix. Looking forward to any further updates from the team.

2 Likes

We’ve prepared a branch fixing the issue on Cordova platforms by forcing to use cordova-common@5.0.0 version. This should resolve the problem. We’ll publish a 2.16.1-beta version so you can test it in your real environments. I’ll let you know when the beta is ready. We will need your feedback.

Meanwhile, you can use the workaround script above or apply the PR changes if using a Meteor checkout.

2 Likes

Meteor 2.16.1-beta.0 is live with the fix for this issue.

I need help testing it in production apps. Can you assist?

Run meteor update --release 2.16.1-beta.0 to update your apps.

If verified, I’ll release 2.16.1 officially. Thanks!

3 Likes

@nachocodoner any update on launching this release

There’s a beta release out 2.16.1-beta.0.

Can you check if it fixes the issue? Once I get enough confirmations, I’ll move to the official release. Since official 2.x releases are less frequent nowadays and take longer to publish, I prefer a longer beta phase to gather feedback and address any issues before the final release.

1 Like

yes this beta branch fixes this issue am able to create an android app using meteor release 2.16.1-beta.0 however it fails on ios app running on

uname -m
arm64

again with more context

uname -a
Darwin 25b5be22-f386-4996-bc5b-a224c376c500 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec 6 18:51:28 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T8112 arm64

So question is does meteor release 2.16.1-beta.0 work to create ios app ? On arm64 machine errors with

 meteor list-platforms

Opening db file /Users/m1/.meteor/package-metadata/v2.0.1/packages.data.db
In remote catalog refresh
Returning sync token:                         
{"lastDeletion":1409018311766,"format":"1.1","packages":1738844930938,"versions":1738854192157,"builds":1738855166342,"releaseTracks":1707213496032,"releaseVersions":1738854192917}
Adding syncToken:                             
{"lastDeletion":1409018311766,"format":"1.1","packages":1742143739869,"versions":1742404856960,"builds":1742404871856,"releaseTracks":1707213496032,"releaseVersions":1742295504682}
This project uses Meteor 2.16.1-beta.0, which isn't available on this platform. To work with this app on all supported platforms,
use meteor update --release METEOR@3.1.2 to pin this app to the newest compatible release.

Can someone confirm this will work to create ios app on an intel mac for Meteor 2.16.1-beta.0 ???

Sorry for interrupting this thread but some random thought that had occurred to me. I think MDG shot itself in the foot when it decided to implement Cordova the way it did, because by stepping in between the developer and Cordova, it shackled itself to a never ending debit that only keeps on increasing. And on the developer’s end, you can’t update the version of Cordova or some of the core packages without diving into the core having to just yell on the forums and Github till the update lands into the core, slowing down the development speed and making the DX truly awful.

I’m not saying this to put down the effort of the core team, by all means I appreciate every single second you or anybody has put in to make our lives easier but I’m just alluding to this point because it’s something worth considering in your future efforts regarding Capacitor. Meteor should step of the developer way and let him be. By all means, try to ease his problems and make Meteor play as nicely with Capacitor as it can but don’t shift the problems of the developer onto you because we’ve seen how problematic that can be.

2 Likes

Yes, 2.16.1-beta.0 branch fixes this issue

Yes, we completely agree.

I’ve personally struggled with how tight coupled Meteor and its tool ecosystem are. My approach on Capacitor is to separate it from the Meteor tool, allowing projects to specify the version, plugins, and HCP strategy in their configuration. Make all pieces involving native experience as independent as possible I agree is the right direction.

Is anyone using a Mac M machine (ARM)? Have you been able to run the 2.16.1-beta.0 version?

I didn’t get more feedback on this issue reported by one community member, Release 2.16.1 by nachocodoner · Pull Request #13621 · meteor/meteor · GitHub

So I wonder if others could test it and let me know. It is likely a matter of reinstall compltely the Meteor installation.

Hi @nachocodoner,
I am getting the following error when I tried to update the meteor version.

System Info:
ProductName: macOS
ProductVersion: 14.7.4
BuildVersion: 23H420
Chip: Apple M2

You could try completely removing Meteor globally and reinstalling it (rm -rf ~/.meteor ). Reinstalling with npx meteor@latest will install the latest Meteor 3 version with ARM support. However, if you run version 2.16.1, it will download a different version, but I wonder if that affects compatibility for good. Let me know if that helps.
Release 2.16.1 by nachocodoner · Pull Request #13621 · meteor/meteor · GitHub

Could you try this as a verification?

@nachocodoner Tried the suggested steps but unable to install version 2.16.1-beta.0.

on apple silicon M2 arm64 it fails as I attempt to setup to compile into ios app doing your suggestion ( naturally android app compiles OK on meteor 2.16.1-beta.0 with struggle )

rm -rf ~/.meteor

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

nvm --version
# 0.39.7

nvm install --lts
Installing latest LTS version.
Downloading and installing node v22.14.0…
Downloading https://nodejs.org/dist/v22.14.0/node-v22.14.0-darwin-arm64.tar.xz
########################################################################################################################### 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v22.14.0 (npm v10.9.2)
Creating default alias: default → lts/* (-> v22.14.0)
~/src/github.com/loudthink/loudspeed $ nvm use --lts
Now using node v22.14.0 (npm v10.9.2)

npx -v

#  10.9.2

nvm install 14.21.3 # errors out after seeing much output

npx meteor@latest
Need to install the following packages:
meteor@3.2.0
Ok to proceed? (y) y

=> Arch: os.osx.arm64
=> Meteor Release: 3.2
=> Meteor Downloaded in 3.376s
=> Extracting the tarball, this may take some time

=> Meteor extracted in 11.778s


Meteor has been installed!

export PATH=/Users/m1/.meteor:$PATH

meteor add-platform ios
Opening db file /Users/m1/.meteor/package-metadata/v2.0.1/packages.data.db
This project uses Meteor 2.16.1-beta.0, which isn’t available on this platform. To work with this app on all supported platforms,
use meteor update --release METEOR@3.2 to pin this app to the newest compatible release.

uname -a
Darwin 25b5be22-f386-4996-bc5b-a224c376c500 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec 6 18:51:28 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T8112 arm64

uname -m
arm64

Anyone know if meteor 2.16.1-beta.0 will run on intel not arm ?
I know it fails on native arm as well as fails using Rosetta 2 on arm
to emulate from a terminal and all tooling installed from same rosetta terminal

Hi, @nachocodoner. I have a Mac M1, and I successfully updated the app. I tested it in production, and everything looks good, thanks a lot! I just ran the following command:
meteor-update

my app compiled to ios just fine prior to this release (1.x ) however
once upgraded to meteor 2.16.1-beta.0

with my dir showing



ls -la ~/.meteor

total 0
drwxr-xr-x    5 foobar  staff   160B Feb  6 11:15 ./
drwxr-xr-x+ 125 foobar  staff   3.9K Mar 23 18:27 ../
lrwxr-xr-x    1 foobar  staff    49B Feb  6 11:15 meteor@ -> packages/meteor-tool/3.1.2/mt-os.osx.arm64/meteor
drwxr-xr-x    3 foobar  staff    96B Feb  6 11:15 package-metadata/
drwxr-xr-x  138 foobar  staff   4.3K Feb  6 11:15 packages/


uname -m   #   mac mini M1   20250322
arm64

uname -a
Darwin sjuuuukt 24.3.0 Darwin Kernel Version 24.3.0: Thu Jan  2 20:24:06 PST 2025; root:xnu-11215.81.4~3/RELEASE_ARM64_T8103 arm64

   I then get following error during build 

meteor --release 2.16.1-beta.0 build --directory /Users/foobar/src/github.com/foo/bar/build/../../build --server-only
This project uses Meteor 2.16.1-beta.0, which isn't available on this platform. To work with this app on all supported platforms, use
meteor update --release METEOR@3.1.2 to pin this app to the newest compatible release.

Is above error legit ? meaning is release 2.16.1-beta.0 not available on arm64 ?

Other comments on this thread say meteor 2.16.1-beta.0 compiles to ios on arm64 mac M1 yet above meteor error says otherwise … and meteor doc says releases > 2.5.1 are arm64 only on mac … So getting conflicting data … Should I continue to battle trying to fix my errors using native arm64 on my mac M1 or restart from scratch using Rosetta for release 2.16.1-beta.0 using the intel x85_64 arch of meteor ???

For anyone on MacOS ARM still struggling with this, the issue is you can only run this with Rosetta.

  1. Right click terminal app
  2. Click checkbox, open with Rosetta
  3. (Close terminals if you have any open)
  4. Open again, now you can run the update command from above in that terminal

I have yet to figure out how to get this to work with the terminal in Cursor though.