Android - 无法 运行 aapt 转储徽章:'android:icon' 属性:属性值引用不存在

Android - Failed to run aapt dump badging: 'android:icon' attribute: attribute value reference does not exist

我一直在尝试将我的 APK 上传到 Play 商店,但它一直向我显示此错误:

无法 运行 aapt 转储徽章: AndroidManifest.xml:31:错误:获取 'android:icon' 属性时出错:属性值引用不存在

这是一个非常简单的应用程序,这是清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="mx.com.hearwego.mexicocityaudioguideapp">

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        >
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="@string/google_maps_key" />

        <activity
            android:name=".MapsActivity"
            android:label="@string/title_activity_maps" />
        <activity
            android:name=".PoiDetailActivity"
            android:label="@string/title_activity_poi_detail"
            android:theme="@style/AppTheme.NoActionBar" />
    </application>

</manifest>

这是@mipmap/ic_launcher:

<?xml version="1.0" encoding="utf-8"?>
    <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
        <background android:drawable="@drawable/ic_launcher_background"/>
        <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
    </adaptive-icon>

当我 运行 应用程序时,它工作正常,我仍然可以完美地看到图标。此外,当我签署 APK 时,APK 也能正常工作。问题出在上传到 Play 商店时。

有人可以帮我解决这个问题吗?

我在一个应用程序中有完全相同的消息,问题是一些字符串被添加到应用程序中的非默认 strings.xml,我通过简单地将该资源添加到所有 strings.xml 在我的应用程序中。

我假设这个问题可能适用于所有依赖于 localization/language 的资源。