我目前正在编写一个程序来抓取第三方Android应用关键字。
我有一个Maven项目,我正在尝试包含Google提供的uiautomator
库。 (如描述here和here)但是存在一些问题。到目前为止我做了什么:
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
。 IntelliJ然后告诉我,它没有重新调整androidTestCompile
我试图修复来自所有地方的代码,这显然不起作用。
我知道UiAutomator主要用于Android应用程序编程(例如通过Android Studio)来测试所述应用程序的UI,但我不明白为什么它不能在该上下文之外包含所需的库。 / p>
所以这是我的问题:
uiautomator
库吗?androidTestCompile
起作用?提前感谢您的宝贵帮助。