我在android studio中运行我的项目时发现了一个问题,当我尝试运行时我看到的是
0 test classes found in package 'drawable'
Process finished with exit code -1
Empty test suite.
虽然我已经搜索过这个问题,但我找不到解决方案,我甚至试图使缓存失效并重新启动项目,但它仍然无效。这个问题只是针对这个特定的项目引起的,但是对于一个新项目,我会让一切顺利。
我的gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.jiit.minor2.shubhamjoshi.human"
minSdkVersion 17
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:design:24.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.firebase:firebase-client-android:2.5.2+'
compile 'com.github.amlcurran.showcaseview:library:5.4.3'
compile 'com.firebaseui:firebase-ui:0.3.1'
compile files('libs/twitter4j-core-4.0.4.jar')
}
我的项目结构
提前致谢。