活动类{..... SplashActivity}不存在

时间:2015-03-21 07:21:59

标签: android android-activity android-manifest

我在设备上运行项目时遇到了这些错误:

Launching application:.Splash_Activity.
DEVICE SHELL COMMAND: am start -n ".Splash_Activity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=.Splash_Activity }
Error type 3
Error: Activity class {.Splash_Activity} does not exist.

我检查我的Android-Manifest文件就好像

 <activity
        android:name=".SplashActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

和Gradle就像:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 21
    buildToolsVersion "21.0.2"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
allprojects {
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
    }
}

repositories {
    jcenter()
}


dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:cardview-v7:+'
    compile 'com.google.android.gms:play-services:4.3.+'
    compile files('libs/GraphView-3.1.3.jar')
    compile files('libs/google-play-services.jar')
    compile files('libs/android-support-v4.jar')
    compile files('libs/bolts-android-1.1.2.jar')
    compile 'com.github.navasmdc:MaterialDesign:1.+@aar'
    compile files('libs/nineoldandroids-2.4.0.jar')
    compile 'com.android.support:appcompat-v7:22.0.0'
}

我也通过更改包名等来尝试这么多.. 我该怎么做才能解决这个问题?

3 个答案:

答案 0 :(得分:1)

要解决此问题:

  1. 清理项目
  2. 删除了构建目录
  3. 重启Android工作室
  4. 重建项目
  5. 运行
  6. 我认为关键是重启IDE。

    或者 尝试添加

    com.package.name.SplashActivity
    

    此处相应更改包名称

    Source

答案 1 :(得分:1)

2018 ...确保设备已完全卸载应用程序。 在设置中转到您的应用,然后删除对您尝试安装的应用的引用。

答案 2 :(得分:0)

如果应用程序之前已安装,则需要确保为所有用户删除了该应用程序。 (旧版本的Android会导致该错误。)

您可以从电话设置->应用和通知->应用信息->您的应用名称中进行检查,然后从右上角菜单中为所有用户单击删除。