Failling将库添加到android studio项目中

时间:2017-08-07 15:11:40

标签: android android-studio lib

我想在Android studio中为我的项目添加Github库,我尝试了7次以上。每次我有问题。我不知道我能做什么请帮帮我

enter image description here

这是the库。

1 个答案:

答案 0 :(得分:1)

您正在使用的库在其清单中使用android:icon的值,您也是。由于编译器不知道要使用哪个图标,因此抛出此错误。因此,在您的清单中,添加tools:replace="android:icon"以覆盖图书馆的清单,如下所示:

<Application
    tools:replace="android:icon"
    ... >

    // Other elements here
</Application>