Каждый раз, когда я пытаюсь запустить свое приложение, оно выдает мне следующую ошибку.
Я уже пытался указать действие в параметрах запуска, отключить Instant Run и изменить действие Main Launcher в манифесте (а также параметры запуска), установить значение Default Activity, но ничего не работает.
Все началось, когда я добавил действия «Страница продуктов» в Манифест, и эти реализации в com.android.feature и com.android.application:
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-core:16.0.3'
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="br.com.app.coffeehour.coffee_hour">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="@string/app_name"
android:supportsRtl="true"
android:icon="@mipmap/ic_launcher"
android:allowBackup="true">
<activity android:name=".home.Home"
android:theme="@style/CustomTheme"
android:noHistory="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".navigation.ActivityOne"
android:theme="@style/CustomTheme"
android:label="@string/app_name">
<intent-filter android:order="1">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="coffeehour.app.com.br"
android:pathPattern="/.*"
android:scheme="https" />
</intent-filter>
</activity>
<activity android:name=".navigation.ActivityTwo"
android:theme="@style/CustomTheme">
<intent-filter android:order="1">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="coffeehour.app.com.br"
android:pathPattern="/.*"
android:scheme="https" />
</intent-filter>
</activity>
<activity android:name=".navigation.ActivityThree"
android:theme="@style/CustomTheme"
android:noHistory="true">
<intent-filter android:order="1">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="coffeehour.app.com.br"
android:pathPattern="/.*"
android:scheme="https" />
</intent-filter>
</activity>
<!-- Products Page -->
<activity
android:name=".products.OpenScreen">
</activity>
<activity
android:name=".products.NewUser"
android:screenOrientation="portrait" />
<activity
android:name=".products.MainAppPage"
android:label="@string/title_activity_main_app_page"
android:screenOrientation="portrait"
android:theme="@style/CustomTheme" />
<activity
android:name=".products.IndividualProduct"
android:label="@string/title_activity_individual_product"
android:screenOrientation="portrait"
android:theme="@style/CustomTheme" />
<activity android:name=".products.ShoppingCartWindow" />
<activity android:name=".products.CheckOutScreen" />
<activity android:name=".products.ForgotPassword" />
<activity android:name=".products.IndividualProductSeller" />
<activity android:name=".products.AddProductForm"></activity>
</application>
</manifest>