我的应用程序在设备和模拟器中运行良好,但在添加新活动后,此代码抛出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屏幕:
项目构建没有错误。我正在使用Android Studio build 0.2.10。 知道问题是什么吗?