无法解决项目:排毒

时间:2018-01-21 22:58:00

标签: react-native detox

我刚开始为我的项目实现Detox for android。

但是,我遇到了Error:Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve project :detox'.

的问题

当我按照自述文件中的所有步骤操作时,我不确定我做错了什么。

1 个答案:

答案 0 :(得分:0)

Detox的版本是7.0.1,React Native 0.48.4

我设法通过

使其工作
androidTestImplementation(project(path: ":detox")) {
    exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestImplementation 'junit:junit:4.12', {
    exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestImplementation 'com.android.support.test:runner:1.0.1', {
    exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestImplementation 'com.android.support.test:rules:1.0.1', {
    exclude group: 'com.android.support', module: 'support-annotations'
}

稍后,我立即遇到app崩溃,所以我检查了应用程序的解决方案在react-native run-android或detox test之后崩溃了一些依赖版本,特别是关于gsm等等。