找不到资源标识符错误

getting no resource identifier found error

我正在尝试编译 iven-feed-reader project,但在 Android 清单文件中我不断收到此错误:

Error:(16) No resource identifier found for attribute 'roundIcon' in package 'android'

Android manifest.xml:

 <application
    android:allowBackup="false"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:theme="@style/Theme_iven" >
    <uses-library
        android:name="com.sec.android.app.multiwindow"
        android:required="false" />

通常我会尝试 rebuild/clean 项目来修复此错误,但这次它不起作用。

以下是我正在使用的依赖项

compile 'com.android.support:appcompat-v7:24.0.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.android.support:support-v4:24.0.0'
compile 'com.github.bumptech.glide:glide:3.7.0'

如何解决这个错误?

您是否在您的清单标签中添加了下面这行? xmlns:android="http://schemas.android.com/apk/res/android"