错误类型 3 - 启动活动时出错

Posted

技术标签:

【中文标题】错误类型 3 - 启动活动时出错【英文标题】:Error type 3 - Error while Launching activity 【发布时间】:2018-07-24 15:09:13 【问题描述】:

它在牛轧糖及以下版本中运行良好。但给出Error type 3 - 在Oreo 中启动活动时出错。我该如何解决?

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.zzz.com.z">

    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="false"
        android:icon="@mipmap/logo_launcher"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:roundIcon="@mipmap/logo_round_launcher"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <activity
            android:name=".LiveTrack"
            android:label="@string/title_activity_live_track"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />

        <receiver
            android:name=".YourActivityRunOnStartup"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <receiver
            android:name=".ShutDownReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.ACTION_SHUTDOWN" />
            </intent-filter>
        </receiver>

        <service
            android:name=".MyJobService"
            android:permission="android.permission.BIND_JOB_SERVICE" />
    </application>

</manifest>

构建.gradle

apply plugin: 'com.android.application'

android 
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig 
        applicationId "com.zzz.com.z"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.01"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    


dependencies 
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
        exclude group: 'com.android.support', module: 'support-annotations'
    )

    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:26.+'
    compile 'com.google.android.gms:play-services-location:11.0.4'
    compile 'com.android.support:support-vector-drawable:26.+'
    testCompile 'junit:junit:4.12'

错误:

执行时出错:am start -n “com.zzz.com.z/com.zzz.com.z.MainActivity”-a android.intent.action.MAIN -c android.intent.category.LAUNCHER 开始: Intent act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.zzz.com.z/.MainActivity 错误类型 3 错误:活动类 com.zzz.com.z/com.zzz.com.z.MainActivity 不存在。

启动活动时出错

【问题讨论】:

您是否尝试过这里的建议:***.com/q/20915266?或***.com/q/41909487,或***.com/q/19670607。 清理项目,从根目录和app文件夹中删除build目录,重启android studio,重新编译运行。 不,它不能解决问题。它在牛轧糖和棉花糖设备中工作正常,但问题只存在于奥利奥 你的包名是“com.zzz.com.z”;更标准的包名称是“com.zzz.com” 这会导致问题吗? 【参考方案1】:

问题可能出在您的清单文件中。检查 AndroidManifest.xml 文件。

检查您的 Activity 声明中是否存在这些意图过滤器。如下所示。

<activity
     android:name=".main.SplashScreenActivity"       
     android:label="@string/app_name"
     android:screenOrientation="portrait">
     <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
     </intent-filter>
 </activity>

如果有此信息,则可能发生了一些缓存问题。然后,试试这个:

转到文件 -> 使缓存无效/重新启动...

【讨论】:

以上是关于错误类型 3 - 启动活动时出错的主要内容,如果未能解决你的问题,请参考以下文章

安装应用程序后在 android studio 中启动活动时出错

会话“应用程序”:启动活动时出错

启动应用程序时出错:未找到默认活动 - 两次中有一次

在 Forge 中创建活动时出错 [严重]

错误类型 3 - 活动类不存在

在片段中创建自定义列表视图时出错。必需的活动,找到的片段