解决依赖资源同名的问题
In case any one else has this problem and none of the mentioned answers solved your issue you can add this line to your AndroidManifest.xml file in the application tag: tools:replace="android:icon You also need the tool namespace in you manifest tag xmlns:tools="http://schemas.android.com/tools" So it would look like this: <manifestxmlns:android=" xmlns:tools="http://schemas.android.com/tools" package="com.example.sqlite"> <application android:allowBackup="true" android:label="@string/app_name" android:theme="@style/AppTheme" tools:replace="android:icon" android:icon="@mipmap/ic_launcher" android:name="com.orm.SugarApp"> I have thecom.github.satyan:sugar:1.3dependency as well,I believe that library is importing another icon in its own manifest,thus causing the conflict. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |