问题描述
我已经遇到这个问题,当我试图上传我在Android市场的Android应用程序。我去过这个问题,计算器的答案,我相信,我的AndroidManifest.xml是apk文件,当我出口和该XML文件中的所有内容都是正确的确定如下。
I've faced this problem when I'm trying to upload my android application on Android market. I've visited this question and answer of stackoverflow and I believe that my AndroidManifest.xml is in apk file when I export and all content of this xml file are correct for sure as follow.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cfdocumentation"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/coldfusion_icon" android:label="@string/app_name">
<activity android:name="MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Detail" />
<activity android:name=".related" />
<activity android:name=".Lists" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="5" />
</manifest>
请帮我怎么来的我面临的Android市场此错误消息时,我尝试上传。
Please help me how come I faced this error message of android market when I'm trying to upload.
推荐答案
我已经解决了这个问题。这是因为我已经上传的apk向市场ultersurf代理。由于Android市场封锁我国的知识产权。
I've solved this problem. It's because of I've uploaded apk to Market with ultersurf proxy. Because Android market block our country's IP.
这篇关于该文件无效:ERROR:转储失败,因为没有AndroidManifest.xml中发现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!