本文介绍了尝试在 Google Play 上发布 Android apk 时出现 aapt dump 标记错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 Google Play 上发布 android apk 文件时遇到了这个问题.
I am getting this problem when publishing android apk file on Google Play.
这是我的 AndroidManifast.xml 代码:
This is my AndroidManifast.xml code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xx.com"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/main_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="xx.com.MainActivity"
android:label="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="xx.com.Images"
android:label="@string/app_name" >
</activity>
<activity
android:name="xx.com.Awards"
android:label="@string/app_name" >
</activity>
<activity
android:name="xx.com.Magazine"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
我尝试了许多 stackoverflow.com 示例,但都失败了.Apk 在设备和模拟器中运行良好.
I tried many stackoverflow.com examples but failed. Apk is working fine in device and emulator.
推荐答案
这可能是你的问题
<activity
android:name="amithanda.com.MainActivity"
android:label="@style/AppTheme" >
label 应该是一个字符串值.
label should be a String value.
android:label="@string/app_name"
仅供参考:开发者指南给你一个想法>
FYI : Developer guide gives you an idea
android:label="string resource"
这篇关于尝试在 Google Play 上发布 Android apk 时出现 aapt dump 标记错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!