HITGIF/TextFieldBoxes

Version Mixes For v27.1.1 And v27.0.1 In The Library(May Lead To Crashes)

inaseem opened this issue · 5 comments

I Am Getting An Error In The Apps build.gradle File When I Sync It. Says Versions Mixes Found For Both v27.1.1 And v27.0.1
err
error

I had same issue. +1

Use exclude:

implementation ('com.github.HITGIF:TextFieldBoxes:1.4.3'){
        exclude group: 'com.android.support', module: 'appcompat-v7'
}

Sorry, but it's not fixing. @The28AWG . Am i missing something ?

This project used appcompat-v7 and design library.

implementation 'com.android.support:design:27.1.1'

Use:

implementation ('com.github.HITGIF:TextFieldBoxes:1.4.3'){
        exclude group: 'com.android.support'
}

Or no idea. Clean and rebuild project after changes.

implementation ('com.github.HITGIF:TextFieldBoxes:1.4.3@aar') {
        transitive = true;
}