JoanZapata / android-iconify

Android integration of multiple icon providers such as FontAwesome, Entypo, Typicons,...
http://joanzapata.com/android-iconify
Other
3.93k stars 529 forks source link

can not support com.android.support:appcompat-v7:28.0.0 #216

Open sunnnydaydev opened 5 years ago

sunnnydaydev commented 5 years ago

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.

yjjdick commented 5 years ago

me too

sunnnydaydev commented 5 years ago

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