You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
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.
The text was updated successfully, but these errors were encountered: