Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用TestFairy构建版本时, Android Studio 会抛出此错误:TestFairy:无法找到用于 Android 项目的 build.gradle。也许你们中的一个人以前遇到过这个问题并且知道如何解决它。
从包含中删除冒号
前:
settings.gradle include ":app" include "CordovaLib"
后:
settings.gradle include "app" include "CordovaLib"