Android运行闪退,求大神帮忙看一下,刚学Android,不太懂~

[2017-04-24 10:49:41 - deviceShow] ------------------------------
[2017-04-24 10:49:41 - deviceShow] Android Launch!
[2017-04-24 10:49:41 - deviceShow] adb is running normally.
[2017-04-24 10:49:41 - deviceShow] Performing com.example.deviceshow.splash activity launch
[2017-04-24 10:49:42 - deviceShow] Uploading deviceShow.apk onto device '81CEBM624J2N'
[2017-04-24 10:49:44 - deviceShow] Installing deviceShow.apk...
[2017-04-24 10:49:46 - deviceShow] Success!
[2017-04-24 10:49:48 - deviceShow] Starting activity com.example.deviceshow.splash on device 81CEBM624J2N
[2017-04-24 10:49:49 - deviceShow] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.deviceshow/.splash }

Manifest:

android:name="org.litepal.LitePalApplication"
android:allowBackup="true"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
android:name="com.example.deviceshow.splash"
android:label="@string/app_name" >

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >

     <intent-filter>
            <action android:name="com.example.deviceshow.MainActivity"/>

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.deviceshow.yanzheng"
       android:label="@string/app_name" />
    <activity
        android:name="com.example.deviceshow.web"
        android:label="@string/app_name" />


 <activity
        android:name="com.example.deviceshow.IdCardRecordActivity"
        android:label="@string/app_name" />

 <activity
        android:name="com.example.deviceshow.EIdPicNew"
        android:label="@string/app_name" />
    <activity
        android:name="com.example.deviceshow.IdCardCameraNew"
        android:label="@string/app_name" />
      <activity
        android:name="com.example.deviceshow.IDCardInfoReaderActivity"
        android:label="@string/app_name" />
       <activity android:name=".SelfStartActivity" >
        <intent-filter>
            <category android:name="android.intent.category.HOME" />
        </intent-filter>
    </activity>
   <activity
        android:name="com.example.deviceshow.IdentifyCardReader"
        android:label="@string/app_name" />    

    <service android:name=".SelfStartService"> 
        <intent-filter> 
                <action android:name="com.example.deviceshow.SelfStartService" /> 
        </intent-filter>
    </service>

    <receiver android:name=".BootBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />

            <category android:name="android.intent.category.HOME" />
        </intent-filter>
    </receiver>


</application>

你把报错log贴出来....

抓log,在log里搜一下fatal就能看到错误位置

在你的AndroidManifest.xml文件中mainActivity的





添加

        变成:
        <intent-filter>
        <action android:name="com.example.deviceshow.MainActivity"/>
                    <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.DEFAULT" />