Android:引用新添加的Activity时ClassNotFoundException

时间:2013-10-03 10:21:17

标签: android gradle android-studio classnotfoundexception

我的应用程序在设备和模拟器中运行良好,但在添加新活动后,此代码抛出ClassNotFoundException:

startActivity(new Intent(this, TutorialActivity.class));

这是项目的build.gradle文件:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 17
    buildToolsVersion "18.1"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 16
    }
}

dependencies {
    compile 'com.android.support:support-v4:13.0.+'
    compile fileTree(dir: 'libs', include: '*.jar')
}

这是Android Studio中的Paths屏幕:

enter image description here

项目构建没有错误。我正在使用Android Studio build 0.2.10。 知道问题是什么吗?

0 个答案:

没有答案