使用 Android Studio 插件上传构建以测试精灵时出现上述错误。他们在谈论什么项目 URL?
测试精灵输出:
TestFairy project URL not found in build output
Done
我按照此链接中的说明添加了插件:http: //docs.testfairy.com/Android/Uploading_with_Android_Studio.html
这在获取我的 testfairy API 密钥后将自动生成的代码添加到我的 gradle 文件中。我知道这是正确的,因为我可以上传构建直到上周。
这是自动生成的代码位:
//TestFairy start - autogenerated by TestFairy intellij plugin
//manual changes might get overwritten
buildscript {
repositories {
mavenCentral()
maven { url 'https://www.testfairy.com/maven' }
}
dependencies {
classpath 'com.testfairy.plugins.gradle:testfairy:1.+'
}
}
apply plugin: 'testfairy'
android {
testfairyConfig {
apiKey 'myAPIkey'
}
}
//TestFairy end
有什么建议么?