android: allow root project to specify dependency versions#149
Merged
lbalmaceda merged 3 commits intoauth0:masterfrom Apr 25, 2018
Merged
android: allow root project to specify dependency versions#149lbalmaceda merged 3 commits intoauth0:masterfrom
lbalmaceda merged 3 commits intoauth0:masterfrom
Conversation
|
This did the trick for me, after setting supportLibVersion in my root build.gradle's ext block. |
demoran23
approved these changes
Apr 23, 2018
lbalmaceda
previously approved these changes
Apr 24, 2018
Contributor
lbalmaceda
left a comment
There was a problem hiding this comment.
It looks fine. Thanks
Contributor
@mlc @demoran23 should we add this notice somewhere in the Readme file?? |
Contributor
Author
|
Good idea, @lbalmaceda! I've updated the PR to include a note in the |
Contributor
Author
|
thanks! |
|
I'm stuck on this but have copied the gradle file from this PR — any update on when this will be published on NPM? |
Contributor
|
@Amnesthesia Sorry about that 😞will be in |
CodingItWrong
pushed a commit
to CodingItWrong/react-native-auth0
that referenced
this pull request
Jul 9, 2025
) Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.22.8 to 7.23.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse) --- updated-dependencies: - dependency-name: "@babel/traverse" dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
React Native projects with multiple native dependencies often end up unintentionally relying on a variety of Android SDK versions, which can lead to unpredictable build-time failures or even run-time crashes, such as the weirdness in #67. Many libraries (see, e.g., react-native-maps/react-native-maps#2047, invertase/react-native-firebase#1007) have been moving to a system of allowing the solution recommended by google of having the root project set properties with the desired dependency versions. This PR implements that solution for
react-native-auth0.