Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/197.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/solr/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
将我的应用程序上载到google play-android时出错_Android_Upload_Apk - Fatal编程技术网

将我的应用程序上载到google play-android时出错

将我的应用程序上载到google play-android时出错,android,upload,apk,Android,Upload,Apk,我上传我的apk时一直出现这个错误。谷歌播放的文件: Failed to run aapt dump badging: W/ResourceType(13524): No known package when getting value for resource number 0x01080049 ERROR getting 'android:icon' attribute: attribute is not a string value 这是我的清单文件: <?xml version=

我上传我的apk时一直出现这个错误。谷歌播放的文件:

Failed to run aapt dump badging:
W/ResourceType(13524): No known package when getting value for resource number 0x01080049
ERROR getting 'android:icon' attribute: attribute is not a string value
这是我的清单文件:

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

<uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="21" />

<compatible-screens>
    <screen
        android:screenDensity="mdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="hdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="xhdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="mdpi"
        android:screenSize="large" />
</compatible-screens>

<supports-screens
    android:anyDensity="false"
    android:largeScreens="true"
    android:normalScreens="true"
    android:requiresSmallestWidthDp="320"
    android:smallScreens="false"
    android:xlargeScreens="false" />

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges=  "keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
    <activity
        android:name="com.example``.flags.WaitScreen"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

我尝试过的事情: 1.将label属性更改为“@null”无效。 2.将我的图标图像放入所有可绘图文件夹-包括“可绘图”(不带扩展名) 3.更改图标图像名称。
4.将strings.xml放入我所有的values文件夹中。

并且您尝试使用的图像文件包含在您的项目中…??是的,当然。图标启动器是可用的是所有我的drawables文件夹。如果你在你的手机或平板电脑上安装了应用程序,就像当你去Bugging。。。你看到图标发射器了吗???看到了。没错。你能发布你的项目结构的截图吗?我想看到的是可绘制的文件夹及其内容!