android-iconify
android-iconify copied to clipboard
can not support com.android.support:appcompat-v7:28.0.0
When android studio version 3.2 and android sdk28 were introduced, iconify relied on compile times errors.DexArchiveMergerException.When I lowered the SDK version to 27, changing the support support package to 27.1.1 was resolved.This problem is solved and it is even better to support the latest support package.
me too
A simple solution is add(add exclude group: 'com.android.support')
implementation( 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2'){ exclude group: 'com.android.support'} implementation ('com.joanzapata.iconify:android-iconify-ionicons:2.2.2'){ exclude group: 'com.android.support'} to your biuld.gradle. Please refer to https://blog.csdn.net/qq_38350635/article/details/88634225 for details