मैं अपने ऐप को एंड्रॉइड बाजार में जोड़ने की कोशिश कर रहा हूं।एंड्रॉइड बाजार में एपीके अपलोड करते समय त्रुटि
"फ़ाइल अमान्य है:: डब्ल्यू/ResourceType (17963): विफल पैकेज में के लिए 0x7f050003 (टी = 4 ई = 3) प्रवेश हो रही 0 (त्रुटि -75) त्रुटि हो रही है 'लेकिन मैं निम्न त्रुटि का सामना करना पड़ रहा एंड्रॉयड: आइकन 'विशेषता: विशेषता एक स्ट्रिंग मान "
मेरे मैनिफ़ेस्ट फ़ाइल है:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shaer.Hadith"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".HadithActivity"
android:screenOrientation="portrait">"
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".HadithsList">
</activity>
<activity
android:name=".Hadith">
</activity>
</application>
</manifest>
" नहीं है ic_launcher रेस "में शामिल है"/drawable-hdpi "," रेस/drawable- ldpi "और" res/drawable-mdpi "निर्देशिकाएं।
मैंने इस पोस्ट का पालन किया लेकिन यह मेरे लिए काम नहीं किया। "ERROR getting 'android:icon' attribute: attribute is not a string value" when trying to upload to the Android Market
बहुत पहले से धन्यवाद।
मैंने एक "res/drawable" निर्देशिका बनाई और इसमें मेरा आइकन "ic_launcher" जोड़ा लेकिन अभी भी कोई फर्क नहीं पड़ता।
डाल "ic_launcher" बचाने "res/drawable" –