Android Studio 3.1.3 android:roundIcon

时间:2018-07-22 08:37:57

标签: android android-studio-3.0

我有一个Compile Error告诉我从android:roundIcon中删除AndroidManifest.xml,类似于其他帖子: No resource identifier found for attribute 'roundIcon' in package 'android'

我的目标是API 15,并且只安装了该版本,但是Android Studio不断重新添加该行并破坏了编译。如何停止/修复此问题?

我的build.gradle有:

    minSdkVersion 15
    targetSdkVersion 15

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testapplication"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="15" />

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

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

</manifest>

如果我删除它,它会一直重新添加android:roundIcon="@mipmap/ic_launcher_round"。如何停止这种行为?

谢谢。

1 个答案:

答案 0 :(得分:0)

只需删除圆形图标的所有“ @ mipmap / ic_launcher”即可。大功告成。另外,如果仍然无法解决问题,请尝试使用图像资源为其添加自己的图标,并将其设置为“ ic_launcher”图标。