Skip to content
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

Fail to sync in Oreo #8

Closed
drkpoon opened this issue Dec 22, 2017 · 2 comments
Closed

Fail to sync in Oreo #8

drkpoon opened this issue Dec 22, 2017 · 2 comments
Labels

Comments

@drkpoon
Copy link

drkpoon commented Dec 22, 2017

Gradle file fail to sync when targeting Oreo. Below is my build.gradle file. The error is 'All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 26.1.0, 25.3.1. '

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.evrencoskun.library:tableview:0.8.3'
}

@evrencoskun
Copy link
Owner

evrencoskun commented Dec 22, 2017

Hi Derek,

The reason is TableView has below lines.

compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'

I am gonna check what I can do.

Edited: However, you can exclude the support libraries via gradle, so it won't cause issues.

http://stackoverflow.com/a/21765656/325479

@evrencoskun
Copy link
Owner

evrencoskun commented Dec 26, 2017

I have just upgrade the build version to '27.0.2' which is the latest one.

When you upgrade your support library build-version. The issue will be solved.

The new version will probably be released at the latest at the weekend. So you can test it at that time.

Edit: 0.8.5.1 version has been released. You can use it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants