Android Studio無法編譯我的測試項目,因爲它無法解析資源。 我嘗試了gradle.build中res目錄的一些不同設置,但沒有任何工作。我在這裏錯過簡單的東西嗎?這是一個簡單的HelloWorld項目,沒有任何個人信息。Android Studio無法找到我的資源
我已經因爲它是由Android的工作室嚮導創建以下項目結構(最新版本0.2.5):
在我的AndroidManifest.xml有通常的應用程序名稱引用:@字符串/ app_name 該字符串在main/res/values/strings.xml中定義(在上面的屏幕截圖中選擇)。
我從IDE(Android Studio中)得到的錯誤是:
android-apt-compiler: [MyApplicationProject] C:\...\MyApplication\src\main\AndroidManifest.xml:6: error:
Error: No resource found that matches the given name (at 'label' with value '@string/app_name').
我在命令行中獲得當我運行 「gradle這個任務」 的錯誤是:
A problem occurred configuring root project 'MyApplicationProject'.
> Failed to notify project evaluation listener.
> Main Manifest missing from C:\...\MyApplicationProject\src\main\AndroidManifest.xml
檢查這個答案http://stackoverflow.com /問題/ 16682223 /如何-DO-結構-PRO ject-test-directory-in-android-studio – robotoaster
謝謝,但是你確實想告訴我嗎?我已經知道這篇文章,但它專注於測試設置。需要測試文件夾以便識別我的res文件夾嗎? – muetzenflo
您不必指定它們,因爲它們默認情況下被命名爲我的屏幕截圖。我所做的只是將testPackageName和testInstrumentationRunner添加到默認配置。另外我沒有使用IDE來運行測試,但gradle命令 – robotoaster