-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not find transition.jar (com.android.support:transition:28.0.0). #290
Comments
after linking I seem not to be able to get https://dl.google.com/dl/android/maven2/com/android/support/transition/28.0.0/transition-28.0.0.jar |
Not sure I ran into the same issue or not but if you are using a newer version of RN (0.60+ I believe) then you may need to use the Jetifier to update this library as RN has movied to using AndroidX facebook/react-native#23112 See this comment here: facebook/react-native#25483 (comment) |
I use react native 59 |
Closing this since #395 migrates the library to use androidx and hence the problem with transition package should no longer occur |
Having the same problem on RN 0.59 when using |
@mifi change build.gradle of this project to |
Thanks, but I upgraded to 0.61 eventually and now everything works |
I'm using libversion 28.0.0 and i get this error
I figure out there is no transition-28.0.0.jar and only transition-28.0.0.aar exist so I go to build.gradle and change it to this
implementation "com.android.support:transition:${rootProject.ext.supportLibVersion}@aar"
Now everythink looks fine.
Is it a better way to do that?
The text was updated successfully, but these errors were encountered: