英文:
How to fix the default activity not found problem?
问题
我的问题与Android Studio有关。每当我尝试运行我的应用程序时,都会出现一个错误,上面写着“找不到默认活动”。请帮我解决,这真的很重要。提前谢谢!
以防万一,我有两个类:第一个是MainActivity,第二个是CatRepository。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cats">
<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=".ui.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
英文:
my problem is related to Android Studio.Whenever I try to run my app I get an error that says default activity not found.Please help me out,it's really important.Thank you in advance!
Just in case,I've got 2 classes: the first one is MainActivity,the second one is CatRepository
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cats">
<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=".ui.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案1
得分: 1
尝试将 <activity android:name=".ui.MainActivity">
替换为 <activity android:name=".MainActivity">
。
英文:
Try to replace <activity android:name=".ui.MainActivity">
by <activity android:name=".MainActivity">
答案2
得分: 0
尝试使用您的 Activity 的完整包名称。
英文:
Try putting full package name of your Activity.
答案3
得分: 0
尝试无效化缓存并重新启动。
文件 -> 无效化缓存/重新启动
此外,在执行此操作后,同步您的项目:文件 -> 与Gradle文件同步项目。
英文:
You can try invalidating cache and restart.
File -> Invalidate Cache/Restart
Also after doing this, sync your project. : File-> Sync Project with Gradle Files
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论