Open asgerjensen opened 5 years ago
This would be the only thing that may interfere with your build: https://github.com/EddyVerbruggen/nativescript-plugin-firebase/commit/e556c25751f5303a42a72fc547671e2a08b0b32f
Thanks,
I cant really see any reason why that would cause this change though.
It, ofcourse, works perfectly on my local setup, and the main difference I can see between my own setup, and the CI, is that the CI has a global Gradle version 5.2.1 ; but I doubt its being used by the build.
I do have a before-plugins.gradle file with
android {
project.ext {
googlePlayServicesVersion = "+"
}
}
in it, but it seems to match the condition in the check just fine.
If anyone should encounter this: Adding an npm authenticate step (for task runners) before running tns build
resolves this issue:
- task: npmAuthenticate@0
inputs:
workingFile: $(Build.SourcesDirectory)/.npmrc
After upgrading from 8.0.1 to 8.1.1 my CI server (Azure DevOps) gives this exception during the prepare phase of an android build:
In response to
tns prepare android
, with version 8.1.1 of this plugin, I getNow, I realize that the error message itself comes from Azure DevOps, but after looking at the various checkins that has been between 8.0.1 (which works), and 8.1.1 (which doesnt), I cant narrow down what part of the process is failing.
Any pointers as to what its trying to do differently, in the post-prepare between 8.0.1 and 8.1.1 that could cause it to try to resolve (maven/gradle/npm) something different, would be greatly appreciated, so I can try to track down the root cause.