What can break an android build without code changes?

前端 未结 2 1101
青春惊慌失措
青春惊慌失措 2020-12-12 03:00

I am working on a react-native app that uses react-native-firebase. I\'ve setup a CI build on travis with the aim to have reproducible builds, and it has sudden

2条回答
  •  孤城傲影
    2020-12-12 03:42

    For reference, this comment on github provides the answer to my question:

    A dependency (react-native-device-info in my case) was using the latest version of one of its dependencies instead of a fixed/pinned version. When a new release of google services was released, it caused the build to pull in the new version for device-info, thereby causing the conflict with other dependencies that correctly pin the version they need.

提交回复
热议问题