'Error: Can anyone help me with this error I'm facing when compiling my project to start in debug or normal mode?

Error: start with this error someone I'm trying to help by compiling for my project in debug mode, I've looked everywhere and haven't found it...

Can anyone help me with a light on how to solve this problem :(

Below is my code and image of the error, if I need anything else, just ask me to put it here...

Thank you and waiting for answers

enter image description here

My AndroidManifest.xml

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

    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

    <permission
        android:name="${applicationId}.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:requestLegacyExternalStorage="true"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.VegiNew"
        android:usesCleartextTraffic="true">
        <activity
            android:name="retrytech.retrytech.veginew.activites.WebActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.CartActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.SpleshActivity"
            android:screenOrientation="portrait"
            android:noHistory="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="retrytech.retrytech.veginew.activites.OrderDetailActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.NotificationActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.AddAddressActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.ComplainActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.WishlistActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.PaymentSummaryActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.MyOrdersActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.DeliveryOptionsActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.FaqActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.DeliveryAddressActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.RatingAndReivewActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.ProductDetailActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.SearchActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="retrytech.retrytech.veginew.activites.MainActivity"
            android:screenOrientation="portrait" />

        <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />


        <activity
            android:name="cat.ereza.customactivityoncrash.activity.DefaultErrorActivity"
            android:process=":error_activity"
            android:theme="@style/Theme.VegiNew" />


        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="@string/map_key" />
    </application>

</manifest>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source