Trouble building iOS with accounts-google@1.4.1 (cordova-plugin-googleplus)

I started to write how I have tried to get this running but after researching some more, it seems like cordova-plugin-googleplus is not maintained, and probably not working with googles new requirements any way.

So now I wonder if there are any plans to update accounts-google to not use cordova-plugin-googleplus as it breaks the iOS build?
And maybe replace it with some other package that is actively maintained?

I’m running the latest Meteor version on an m1 Mac with the latest updates.

Below are all the errors I had with trying to get the it to build.

When running meteor run ios-device
First I got the Errors executing Cordova commands: While adding plugin cordova-plugin-googleplus@8.4.0 to Cordova project: Error: Variable(s) missing: REVERSED_CLIENT_ID

I fixed this by adding the following to the mobile-config.js

App.configurePlugin('cordova-plugin-googleplus', {
    CLIENT_ID: 'LONG_NUMBER.apps.googleusercontent.com',
    REVERSED_CLIENT_ID: 'com.googleusercontent.apps.LONG_NUMBER',
});

Now it builds and Xcode opens but when it compiles I get the error

SDK does not contain ‘libarclite’ at the path ‘/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a’; try increasing the minimum deployment target

I found out that I could solve this by selecting all pods (in Xcode) and changing their “iOS deployment target” to iOS 15.
(for some reason, App.setPreference('deployment-target', '15.0', 'ios'); did not fix this)

Now I get the following error

Building for ‘iOS-simulator’, but linking in object file (/.meteor/local/cordova-build/platforms/ios/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/GoogleSignIn[arm64]2) built for ‘iOS’

Linker command failed with exit code 1 (use -v to see invocation)