Android 清单未找到其他 XML 资源

Android Manifest not finding other XML resources

我的 Android 清单没有找到任何其他资源。除了添加 WRITE_EXTERNAL_STORAGE 行外,我没有触及清单中的任何内容。

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.malachowski.draw" >

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MyActivity"
        android:label="@string/app_nam" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

找不到 ic_launcher、app_name 和 AppName。我已经重新启动 Android Studio 并清理了项目。什么会导致这个问题?

在 Android 工作室再次创建项目也值得,有时项目在创建时损坏。

Sundeep 夏尔马

原来是我用的AndroidStudio版本有bug。我更新了它并解决了问题。