在设备上启动时 android.intent.action.MAIN ERROR
我正在尝试在我的设备上运行这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论