我们有一个由外部咨询公司创建的应用程序,我正在尝试对其进行更改。我可以通过运行命令
来编译和创建apk"gradlew clean build assembleDebug"
来自windows命令行
但是当我将它导入Android工作室时,我无法在那里构建或运行。错误消息是
Error:Android Source Generator: [myapp-android] AndroidManifest.xml file not found
该文件存在,但填充了
等错误"cannot resolve symbol "@string/app_name"
validates resources references inside resource.xml files"
等等。
带有定义的string.xml文件位于
myapp-android/myApp/MyApp/src/main/res/values
那么,我该怎么做才能让Studio使用的gradle看到这个?看起来它没有识别源目录 - 但是当我将它标记为源时,它没有看到我尝试导入的任何android包。
非常感谢任何帮助。