※ ChatGPTを利用し、要約された質問です(原文:Java初心者なので教えてください)
Java初心者なので教えてください
上記のサイトをコピペしたんですけどできません。
対策を教えてください。
↓参考URL
http://labs.agenda-style.jp/blog/2011/02/android---google--.html
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.googlemaps"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps"/>
<activity android:name=".GoogleMapsActivity"
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>
このプログラムにエラが出ています
補足
エラー: エラー: No resource found that matches the given name (at 'icon' with value '@drawable/icon'). というのが出ます。