Open tappyy opened 7 years ago
Put this in your gradle file:
compile 'com.android.support:gridlayout-v7:25.3.1'
It will fix the issue.
To remove the outdated dependency warning:
implementation 'com.android.support:gridlayout-v7:27.0.2'
implementation ('com.appeaser.sublimepickerlibrary:sublimepickerlibrary:2.1.1') {
// exclude outdated support lib (causes dependency warning)
exclude group: 'com.android.support'
}
Added the compile statement to my gradle and got the following error:
"All com.android.support libraries must use the same version. Found versions 25.3.1, 23.2.1".
Any way of me implementing SublimePicker for use on API 25?