在设备上启动时 android.intent.action.MAIN ERROR

发布于 2025-01-17 14:05:26 字数 1144 浏览 0 评论 0原文

我正在尝试在我的设备上运行这个 Android 应用程序,但它一直显示此错误,并且我没有找到解决方案

$ adb shell am start -n "com.example.seniorproject/com.example.seniorproject.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER

这里是清单文件

<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/Theme.SeniorProject">
    <activity
        android:name=".RegisterActivity"
        android:exported="false"
         />
    <activity
        android:name=".LoginActivity"
        android:exported="false"
         />
    <activity
        android:name=".MainActivity"
        android:exported="true"
         />
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

I'm trying to run this android app on my device but it keeps show this error and I did not find solution for it

$ adb shell am start -n "com.example.seniorproject/com.example.seniorproject.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER

here is Manifests file

<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/Theme.SeniorProject">
    <activity
        android:name=".RegisterActivity"
        android:exported="false"
         />
    <activity
        android:name=".LoginActivity"
        android:exported="false"
         />
    <activity
        android:name=".MainActivity"
        android:exported="true"
         />
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文