appcompat-v7:28.0.0-rc02 doesn't work with design:28.0.0-rc01(should be rc02, but we can't)

com.android.support:appcompat-v7:28.0.0-rc02

com.android.support:design:28.0.0-rc01 -> should be rc02, but there's no rc02 actually.

error:

app/build.gradle:74: Error: All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes).
Found versions 28.0.0-rc02, 28.0.0-rc01. Examples include com.android.support:animated-vector-drawable:28.0.0-rc02 and com.android.support:cardview-v7:28.0.0-rc01 [GradleCompatible]


I know it's a warning, we have turned to warn as the errors in CI in order to avoid the potential dead crashes, well, any solution except turn off option for CI?

issue

UPDATE

Design library version 28.0.0-cr02 published.

OLD ANSWER

According to this link

https://mvnrepository.com/artifact/com.android.support/design?repo=google

design:28.0.0-rc02 not yet published.

So all you can do for now is use the previous version for appcompat and wait until design library new version28.0.0-cr02 release.

So for now use this :

implementation 'com.android.support:appcompat-v7:28.0.0-rc01'


I don't know why... But they(sdk devs) behaving like Microsoft..

"Ohh..It compiles, lets ship it".

They just launch and don't care about bugs.. after updating to latest libs every time, first thing i get is..

"Layout editor preview errors.".

i hope it will be easy next time. :/

Keep track of the library here, until its published, use rc01 for other ones.

https://mvnrepository.com/artifact/com.android.support/design?repo=google

Replace your

implementation 'com.android.support:appcompat-v7:28.0.0-rc02'


with

implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'


I close this ticket, the problem has been solved that Google has updated design library to 28.0.0-rc02 .

That's why I use stable versions always

If you are developing an app, you don't want to face these type of errors.

At the time of answering the current most stable version is 27.1.1 and second 28.0.0-rc02.

I suggest use 27.1.1 until 28 stable version release.

implementation 'com.android.support:appcompat-v7:27.1.1'



Sync again
No need of Invalidate/ Restart, Just restart would be okay. Or closing project and reopening from recent would be faster then restart.


Track the support library release.

Looks like this should no longer be an issue. Looking at the link below, i think that whatever hiccups were encountered by OP are no longer relevant.

https://mvnrepository.com/artifact/com.android.support/appcompat-v7/28.0.0-rc02

About the error message "All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes)." The solution is outlined here (the answer by João Paulo Paiva).

To rid yourself of the error message, you have to basically include each package name mentioned in the warning - com.android.support:animated-vector-drawable:28.0.0-rc02 and com.android.support:cardview-v7:28.0.0-rc01

Essentially, manually add the following lines to your build.gradle

implementation com.android.support:animated-vector-drawable:28.0.0-rc02
implementation com.android.support:cardview-v7:28.0.0-rc02


You may encounter more such warnings - the solution is to keep subsequently adding the libraries/dependencies mentioned (and updating the version to 28.0.0-rc02 as well) until the warnings go away. I had this issue, and after the first lot, I didn't get any more, but YMMV!

1.Go to project/.idea/libraries folder on your file system and see which libraries are different.

2.You will have to manually include these libraries with the same version in your build.gradle file.

3.Then, sync your project

In Your Case:-

Add This Dependency :-

implements 'com.android.support:cardview-v7:28.0.0-rc02'


Add all dependency with Latest version which shows in error message.

The problem which you've listed is just the fair warning by gradle with a red line under appcompat. I Suggest you to Sync your build.gradle file OR you can try Clean Project/Rebuild it.

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:cardview-v7:28.0.0-rc02'
implementation 'com.android.support:recyclerview-v7:28.0.0-rc02'
}

Comments

Popular posts from this blog

Meaning of `{}` for return expression

Get current scroll position of ScrollView in React Native

flutter websocket connection issue