I am new to android development. I have created login activity and trying to add background image. Image showing properly in studio preview window, but i am getting error while running the app. Here find attached image for error message, please help [![enter image description here][1]][1]
Following error showing
Error:Execution failed for task ':app:mergeDebugResources'. Crunching Cruncher loginbg.png failed, see logs
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:background="@drawable/loginbg"
tools:context="com.example.solid.registration.LoginActivity">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/emailLogin"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="38dp"
android:layout_marginStart="38dp"
android:layout_marginTop="156dp"
android:hint="Email" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:ems="10"
android:id="@+id/passwordLogin"
android:layout_centerVertical="true"
android:layout_alignLeft="@+id/emailLogin"
android:layout_alignStart="@+id/emailLogin"
android:hint="Password" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Login"
android:id="@+id/buttonLogin"
android:layout_below="@+id/passwordLogin"
android:layout_alignLeft="@+id/passwordLogin"
android:layout_alignStart="@+id/passwordLogin" />
here is my xml code
here is my logcat
3:37:11 AM Gradle sync started
3:38:06 AM Gradle sync completed
3:38:09 AM Executing tasks: [:app:generateDebugSources, :app:generateDebugAndroidTestSources]
3:38:18 AM Gradle build finished with 1 error(s) in 10s 885ms
3:38:30 AM Executing tasks: [:app:assembleDebug]
3:38:34 AM Gradle build finished with 1 error(s) in 4s 114ms