java.lang.classnotfound异常即将到来,同时在mi4i android手机上启动一个简单的helloworld应用程序。它在模拟器上正常运行。我正在使用android studio 2.3。我已经检查了mainfest文件中的类名和路径。任何人都可以帮忙,我在做什么错?以下是错误截图Mobile screenshot while launching app
以下是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tarun.myapplication">
<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=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>