0

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

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

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

4

1 回答 1

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'
}

同样后来,我立即遇到了应用程序崩溃,所以我检查了一下,应用程序在 react-native run-android 或 detox 测试后崩溃的解决方案是一些依赖版本,尤其是关于 gsm 等。

于 2018-02-03T11:46:01.293 回答