Arkadaşlar (build.gradle) içerisinde güncelleme uyarısı veriyordu Android Studio güncelledim daha sonra (slide_up.xlm) hata vermeye başladı.

Aldığım hata


slide_up.xlm
<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"    android:fillAfter="true">    <scale        android:duration="500"        android:fromXScale="1.0"        android:fromYScale="1.0"        android:interpolator="@android:anim/linear_interpolator"        android:toXScale="1.0"        android:toYScale="0.0" />    <!--  <translate          android:duration="1000"          android:fromYDelta="100%"          android:toYDelta="0" />--></set>
build.gradle
apply plugin: 'com.android.application'android {    compileSdkVersion 29    buildToolsVersion "29.0.3"    defaultConfig {        vectorDrawables.useSupportLibrary = true        applicationId "com.trial.quiz"        minSdkVersion 19        targetSdkVersion 29        versionCode 1        versionName "1.0.1"        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"        multiDexEnabled true        useLibrary 'org.apache.http.legacy'    }    buildTypes {        release {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'        }    }}dependencies {    implementation fileTree(dir: 'libs', include: ['*.jar'])    implementation 'androidx.appcompat:appcompat:1.1.0'    implementation 'androidx.browser:browser:1.2.0'    implementation 'androidx.legacy:legacy-support-v4:1.0.0'    implementation 'com.google.android.material:material:1.1.0'    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'    implementation 'androidx.multidex:multidex:2.0.1'    implementation 'com.squareup.picasso:picasso:2.71828'    implementation 'com.android.volley:volley:1.1.1'    implementation 'com.google.firebase:firebase-core:17.2.3'    implementation 'com.google.firebase:firebase-messaging:20.1.3'    implementation 'com.google.firebase:firebase-database:19.2.1'    implementation 'com.google.firebase:firebase-storage:19.1.1'    implementation 'com.facebook.android:facebook-android-sdk:6.2.0'    implementation 'com.google.firebase:firebase-auth:19.3.0'    implementation 'com.google.android.gms:play-services-auth:17.0.0'    implementation 'com.google.android.gms:play-services-ads:19.0.0'    implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'    implementation('org.apache.httpcomponents:httpmime:4.5.12') {        exclude module: 'httpclient'    }    implementation 'com.squareup.okhttp3:logging-interceptor:4.4.1'    implementation 'org.apache.httpcomponents:httpclient-android:4.3.5'    implementation 'com.squareup.retrofit2:retrofit:2.7.2'    implementation 'com.squareup.retrofit2:converter-gson:2.7.2'}apply plugin: 'com.google.gms.google-services'