我正在尝试解决两个错误:
在我的Android Studio项目中运行集成测试。为了解决这个问题,我已经看到了一些答案和我的构建。Gradle看起来像:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.ps.comunio.comuniops"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}
compileOptions.with {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.11'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'info.cukes:cucumber-java:1.2.0'
compile 'info.cukes:cucumber-junit:1.2.0'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
}
这将解决这两个错误,但会出现一个警告:
错误:与项目“:App”中得依赖项“junit:junit”冲突.应用程序(4.11)和测试应用程序(4.12)的解析版本不同。
谢谢!
一种解决方案是强制Gradle编译junit:junit:4.11
而不是junit:junit:4.12
为此,请在应用程序的build.gradle
中添加以下内容:
android {
configurations.all {
resolutionStrategy.force 'junit:junit:4.11'
}
}
今天我在android工作室开始了一个新的项目。一切顺利,没有差错。添加项目后,我借助android Studio中的Firebase助手工具,将项目与Firebase实时数据库进行了连接。 然后我得到这个错误: 我看到错误主要来自于在我的应用程序级别文件的末尾添加了这一行。因为当我把它评论出来的时候,它构建的很好。 我的项目::
我是新的Android应用程序开发。当我试图创建一个新的项目,Android项目......下面的消息弹出。. 错误:任务执行失败:应用程序:preDebugAndroidTestBuild。 与项目中的依赖com.android.support:支持注释冲突:应用。应用(26.1.0)和测试应用(27.1.1)的解析版本不同。详见https://d.android.com/r/tools/tes
我对整个Java生态系统还是个新手,我已经花了几个小时的时间来获得一个外部依赖者来与Intellij一起工作。我使用一个简单的Java应用程序,它包含一个,其中包含: 包含对com.google.guava的依赖项(必需),如下所示: 每当我尝试调试时,都会得到无法加载的错误。我还尝试克隆https://github.com/tfnico/guava-example(将Java版本更新为受支持的版
我试图解决这个梯度错误,我从我的一个朋友那里引进了这个项目,它在他的系统中运行得很好。好像我有以下问题在我的年级。 错误:与项目“:App”中得依赖项“com.android.support:support-annotations”冲突.应用程序(27.0.2)和测试应用程序(25.4.0)的解析版本不同。
null 警告:与依赖项“com.android.support:support-annotations”冲突。应用程序(22.0.0)和测试应用程序(21.0.3)的解析版本不同。 Gradle本身更宽容,但Android工作室,就没那么宽容了。 我没有用21.0.3声明的依赖项...是不是其中一个依赖库使用21.0.3而谷歌忘了用批处理的其余部分更新它? null null null
(我还为此提出了一个GitHub问题-https://github.com/googleapis/google-cloud-java/issues/4095) 我有以下两个Apache Beam依赖项的最新版本: 依赖1-谷歌-云-数据流-java-sdk-all (Apache Beam的发行版,旨在简化Apache Beam在谷歌云数据流服务上的使用-https://mvnrepository