Я занимаюсь разработкой приложения для Android, но при запуске кода в эмуляторе я получаю следующую ошибку
Ошибка при выполнении: am start -n "yodgobekkomilov.edgar.com.githubapi / yodgobekkomilov.edgar.com.githubapi.SearchActivity "-a android.intent.action.MAIN -c android.intent.category.LAUNCHER Начало: Intent {act = android.intent.action.MAIN cat = [android.intent.category.LAUNCHER]cmp = yodgobekkomilov.edgar.com.githubapi / .SearchActivity} Тип ошибки 3 Ошибка: класс активности {yodgobekkomilov.edgar.com.githubapi / yodgobekkomilov.edgar.com.githubapi.SearchActivity} не существует.
Ошибкапри запуске действия
ниже моего манифеста
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="yodgobekkomilov.edgar.com.githubapi">
<uses-permission android:name="android.permission.INTERNET" />
<application
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="yodgobekkomilov.edgar.com.githubapi.SearchActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".NextActivity"
/>
<activity android:name=".MainActivity"/>
</application>
</manifest>
ниже структуры пакета моего приложения ![package structure](https://i.stack.imgur.com/8ZiX1.png)