Cannot able to build the app getting this error, before it was running fine
app/src/main/res
values/arrays.xml
error: resource drawable/ic_menu_home_selection (aka com.beeland.consumer:drawable/ic_menu_home_selection) not found.
error: resource drawable/ic_menu_my_account_selection (aka com.beeland.consumer:drawable/ic_menu_my_account_selection) not found.
error: resource drawable/ic_menu_offers_selection (aka com.beeland.consumer:drawable/ic_menu_offers_selection) not found.
error: resource drawable/ic_menu_about_us_selection (aka com.beeland.consumer:drawable/ic_menu_about_us_selection) not found.
error: resource drawable/ic_menu_settings_selection (aka com.beeland.consumer:drawable/ic_menu_settings_selection) not found.
error: resource drawable/ic_menu_contact_us_selection (aka com.beeland.consumer:drawable/ic_menu_contact_us_selection) not found.
error: resource drawable/ic_menu_logout (aka com.beeland.consumer:drawable/ic_menu_logout) not found.
null
failed linking references.
Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.beeland.consumer">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name=".application.BeeLandConsumerApplication"
android:allowBackup="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=".activity.SplashActivity"
android:screenOrientation="sensorPortrait"
android:theme="@style/SplashStyle">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Cannot figure out what exactly the problem here, not able to build the code, before it was working fine but suddenly it stopped working don't know why.