2015-04-29 95 views
3

首先這是我的第一個應用程序,並且第一次使用Android Studio,所以我希望這只是我還不明白的一件小事。Android Studio的建立錯誤

這是我的錯誤信息;

AGPBI: {"kind":"ERROR","text":"No resource found that matches the given name (at \u0027icon\u0027 with value \[email protected]/ic_launcher\u0027).","sourcePath":"C:\\Users\\Matt\\AndroidStudioProjects\\FirstApp\\app\\build\\intermediates\\manifests\\full\\debug\\AndroidManifest.xml","position":{"startLine":13,"startColumn":23,"startOffset":385,"endColumn":42,"endOffset":404},"original":""} 


FAILED 

FAILURE: Build failed with an exception. 

* What went wrong: 
Execution failed for task ':app:processDebugResources'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Matt\AppData\Local\Android\sdk\build-tools\21.1.2\aapt.exe'' finished with non-zero exit value 1 

這是關於清單XML代碼:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.example.matt.firstapp" > 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name=".MainActivity" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
</application> 

</manifest> 

隨着線路7上的下面的錯誤消息; (Ctrl + F1) 驗證Android XML文件內的資源引用。

我已經安裝的Android 21.1.2:

​​

感謝您的幫助!

+0

如果您可以發佈您的AndroidManfiest.xml的內容 – Lolo

回答

2

Unicode轉義符號\u0027代表引號字符。因此,從錯誤消息看來,您的AndroidManifest.xml中有一些類似於'icon' = '@mipmap/ic_launcher'的東西,我猜它應該更像android:icon="@mipmap/ic_launcher"

+0

,這將是更容易回答這是行; 機器人:圖標= 「@紋理貼圖/ ic_launcher」 無法解析符號 '@紋理貼圖/ ic_launcher' 少...(按Ctrl + F1) 內Android的XML文件void驗證資源引用 – mattz330

+0

燁。應該參考'@ drawable /' – Kottary

+0

@Matthew你真的有'app/src/main/res'下的一組文件夾'mipmap-mdpi','mipmap-hdpi'等等......?其中至少有一個應該有一個'ic_launcher.png'文件。 – Lolo