aapt ERROR获取'android:name'属性:属性不是字符串值

时间:2013-06-09 09:45:50

标签: android apk aapt

当我的apk生成时,我在其上执行命令aapt dump badging。我一直收到以下错误:

  

应用程序:label ='名称'icon ='res / drawable / icon_128x128.png'   
application-debuggable launchable-activity:   name ='co.package.name.MainActivity'label ='Name'icon =''ERROR   获取'android:name'属性:属性不是字符串值

我尝试为所有活动添加标签名称,并删除/ res下的所有其他值-xx文件夹但是徒劳无功。但是,如果我创建一个全新的项目并生成一个新的APK,则可以使用aapt dump badging命令成功执行APK。

我比较了两张APK的打印信息,发现了一个主要区别:

成功消息apk:

  

应用标签: 'AppLabel'
  应用程序图标-160: 'RES /抽拉-xhdpi / icon_128x128.png'
  应用程序图标-240: 'RES /抽拉-xhdpi / icon_128x128.png'
  应用程序图标-320: 'RES /抽拉-xhdpi / icon_128x128.png'
  application:label ='AppLabel'   图标= 'RES /抽拉-xhdpi / icon_128x128.png'
  application-debuggable
launchable-activity:   name ='com.demo.testApp.MainActivity'label =''icon ='

失败的消息apk:

  

application-label:'MyApp'
application-label-ja:'MyApp'
  application-label-de:'MyApp'
application-label-he:'MyApp'
  application-label-zh:'MyApp'
application-label-fi:'MyApp'
  应用标签-NL: 'MyApp的'
  .. .. ..(附上所有语言,最后发生错误)
.. ..   application:label ='MyApp'icon ='res / drawable / icon_128x128.png'aut application-debuggable
launchable-activity:   name ='com.name.myapp.MainActivity'label ='MyApp'icon =''WHROR   获取'android:name'属性:属性不是字符串值


-----编辑------
我发现这与“语言”问题无关。我修改了我的清单文件并确保没有打印出这样的“application-label-XX”,错误仍然是一样的。

以下是我的清单文件

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <supports-screens android:anyDensity="true" />
    <uses-permission android:name="android.permission.SEND_SMS" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />

    <!-- Location -->
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

    <!-- Camera -->
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <uses-feature
        android:name="android.hardware.camera"
        android:required="true" />
    <uses-feature
        android:name="android.hardware.camera.front"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.camera.autofocus"
        android:required="false" />

    <!-- GCM Necessary -->
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <permission
        android:name="co.package.name.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />

    <uses-permission android:name="co.package.name.permission.C2D_MESSAGE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

    <!-- Calendar R/W -->
    <uses-permission android:name="android.permission.READ_CALENDAR" />
    <uses-permission android:name="android.permission.WRITE_CALENDAR" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/icon_128x128"
        android:label="@string/app_name"
        >
        <!-- GCM meta-data -->
        <meta-data
            android:name="com.arrownock.push.SERVICE_TYPE"
            android:value="GCM" />
        <meta-data
            android:name="com.arrownock.push.gcm.SENDER_ID"
            android:value="@string/gcm_project_id" />
        <meta-data
            android:name="com.arrownock.push.APP_KEY"
            android:value="@string/light_appkey" />

        <meta-data
            android:name="com.facebook.sdk.ApplicationId"
            android:value="@string/fb_id" />

        <activity
            android:name=".Main"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="co.package.name.SplashHP"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SettingsHP"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="co.package.name.LocationSelect"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="co.package.name.SettingOptionAlarm"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SettingOptionNotify"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SettingOptionShare"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="settingshare"
                    android:scheme="oauth" />
            </intent-filter>
        </activity>
        <activity
            android:name="co.package.name.HpCalendar"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SMSList"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SMSEditor"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.SMSChooseToSend"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.ShareToFB"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.ActPOI"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>

        <activity
            android:name="com.facebook.LoginActivity"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
        <activity
            android:name="co.package.name.LogInOutFB"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>

        <activity
            android:name="co.package.name.LoginTwitter"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="t4jsample"
                    android:scheme="oauth" />
            </intent-filter>
        </activity>

        <receiver
            android:name="co.package.name.AlarmReceiver"
            android:exported="true" >
            <intent-filter>
                <action android:name="@string/action_alarm" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </receiver>

        <!-- GCM Service -->
        <receiver
            android:name="com.arrownock.push.AnPushGCMReceiver"
            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>

                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

                <category android:name="co.package.name" />
            </intent-filter>
        </receiver>
        <service android:name="com.arrownock.push.GCMIntentService" />

        <receiver
            android:name="co.package.name.ExtendedReceiver"
            android:exported="true"
            android:icon="@drawable/icon_128x128"
            android:label="Receiver" >
            <intent-filter>
                <action android:name="com.arrownock.push.PushService.MSG_ARRIVAL" />
            </intent-filter>
        </receiver>
    </application>

</manifest>

我的清单文件中可能有错误的格式或拼写错误?

------编辑----
我也认为这可能是解码的问题。在我的环境中,我使用utf-8。在将XML转换为二进制文件的构建过程中可能出现了问题吗?

如果上面有任何不合理的嫌疑,我真诚地道歉。我三天坚持这个问题,实际上无法取得进展。尝试了很多事情,错误总是一样的。任何建议或评论都会非常感激。

8 个答案:

答案 0 :(得分:12)

  

你的意思是这也可能是因为打破工具造成的吗?

不确定。从历史上看,Android工具有很多错误,并且没有理由认为 aapt dump badging 在某种程度上是完美的。事实上,your very issue has already been filed as a bug。因此,除非您在应用执行中发现可能与此相关的问题,否则我认为 aapt dump badging 是问题的项目,不一定是你的应用程序。

如果你还没有更新到R22工具,你可能会这样做,看看这个bug是否已经修复,他们只是没有关闭这个问题。如果您使用的是R22工具,则可以在该问题上添加注释,指出这一点,并包含指向此SO问题的链接,以便工具团队在问题方面有另一个数据点。

答案 1 :(得分:10)

同样的故事。当我上传一个工作的apk到google play时,我收到了这条消息。我能够用aapt命令(在... \ android-sdk \ platform-tools中)重现它。事实证明,它是意图过滤器名称中的String资源,并通过硬编码来修复。

在没有这个答案的情况下调试它会花费我很多时间:)

答案 2 :(得分:5)

如果您正在使用Gradle并且希望替换基于您的某个构建版本,则可以使用自定义替换字符串而不是使用Android @string引用。 (http://tools.android.com/tech-docs/new-build-system/user-guide/manifest-merger#TOC-Placeholder-support

在build.gradle文件中,为&#34; manifestPlaceholders&#34;中的每个构建风格定义一个值。部分:

productFlavors {
    pro {
        manifestPlaceholders = [
            proFreeString:"my.pro.string"
        ]
    }
    free {
        manifestPlaceholders = [
            proFreeString:"my.free.string"
        ]
    }
}

然后你可以使用&#34; proFreeString&#34;作为清单文件中的替换:

        <intent-filter>
            <action android:name="com.foo.${proFreeString}.ACTION_1" />
        </intent-filter>

答案 3 :(得分:3)

我有同样的问题,我通过从manifex.xml中删除@string来解决它。

原(错误):

string.xml

<string name="alarm_auto_sync">auto_syncx</string>

Manifex.xml

<intent-filter>
    <action android:name="@string/alarm_auto_sync" >
</intent-filter>

以上将按预期正常工作。但是当我上传apk到谷歌播放时,它将导致aapt ERROR getting 'android:name' attribute: attribute is not a string value

问题解决如下:

修正:

Manifex.xml

    <intent-filter>
        <action android:name="auto_syncx" >
    </intent-filter>

您只需将@string更新为完全字符串即可。 希望这会对你有所帮助!

答案 4 :(得分:2)

检查操作名称

<action android:name="@string/action_restart" />

更改为

<action android:name="kr.mint.test.restart" />

答案 5 :(得分:2)

放弃这个,以便它可能会帮助其他人找到这个问题......

@ CommonsWare的原始答案中的链接现在已被破解,但它显然指出了其他答案明确说明的缺点:您不能将字符串资源用作{{1}在你的清单中。简单的答案是对字符串进行硬编码,但是如果要保持代码DRY,可以将字符串值集中在build.gradle中:

action

(这在您的根def actionDoSomething = applicationId + ".ACTION_DO_SOMETHING" resValue "string", "action_do_something", actionDoSomething manifestPlaceholders = [ action_do_something: actionDoSomething ] 部分。)

然后使用@Blake Buckley建议的语法在清单中引用该字符串:

android{}

...在您的Java代码中,它只是一个普通的资源引用:

<intent-filter>
    <action android:name="${action_do_something}" />
</intent-filter>

答案 6 :(得分:0)

我遇到了同样的问题。它是由一个无法找到的字符串引起的。

机器人:标签=&#34; @串/ app_name_launcher&#34;

文件夹values / strings.xml中的字符串根本就不存在。

有趣的是,我可以创建.apk文件。

答案 7 :(得分:0)

基本上,正如错误消息所示,解决此问题只需浏览清单文件的每一行,并确保每个&#34; android:name&#34;有一个正确链接的&#34;字符串值&#34;。

最好还是为每个&#34; android:name&#34;输入所需的字符串。清单文件中的属性来调试问题。