1. <i id='xGZTo'><tr id='xGZTo'><dt id='xGZTo'><q id='xGZTo'><span id='xGZTo'><b id='xGZTo'><form id='xGZTo'><ins id='xGZTo'></ins><ul id='xGZTo'></ul><sub id='xGZTo'></sub></form><legend id='xGZTo'></legend><bdo id='xGZTo'><pre id='xGZTo'><center id='xGZTo'></center></pre></bdo></b><th id='xGZTo'></th></span></q></dt></tr></i><div id='xGZTo'><tfoot id='xGZTo'></tfoot><dl id='xGZTo'><fieldset id='xGZTo'></fieldset></dl></div>
    2. <tfoot id='xGZTo'></tfoot><legend id='xGZTo'><style id='xGZTo'><dir id='xGZTo'><q id='xGZTo'></q></dir></style></legend>

      <small id='xGZTo'></small><noframes id='xGZTo'>

      • <bdo id='xGZTo'></bdo><ul id='xGZTo'></ul>

      如何在我的 android 应用程序中修复 INSTALL_PARSE_FAILED_MANIFEST_MALFORME

      时间:2023-06-26

          <small id='oh1T4'></small><noframes id='oh1T4'>

          <i id='oh1T4'><tr id='oh1T4'><dt id='oh1T4'><q id='oh1T4'><span id='oh1T4'><b id='oh1T4'><form id='oh1T4'><ins id='oh1T4'></ins><ul id='oh1T4'></ul><sub id='oh1T4'></sub></form><legend id='oh1T4'></legend><bdo id='oh1T4'><pre id='oh1T4'><center id='oh1T4'></center></pre></bdo></b><th id='oh1T4'></th></span></q></dt></tr></i><div id='oh1T4'><tfoot id='oh1T4'></tfoot><dl id='oh1T4'><fieldset id='oh1T4'></fieldset></dl></div>
        1. <tfoot id='oh1T4'></tfoot>
            <tbody id='oh1T4'></tbody>

          • <legend id='oh1T4'><style id='oh1T4'><dir id='oh1T4'><q id='oh1T4'></q></dir></style></legend>
              <bdo id='oh1T4'></bdo><ul id='oh1T4'></ul>

                本文介绍了如何在我的 android 应用程序中修复 INSTALL_PARSE_FAILED_MANIFEST_MALFORMED的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                您好,我正在尝试使用 gcm,但无法使其正常工作.不知道我在哪里弄乱它,下面是我得到的错误.我正在尝试直接在设备上部署我的应用程序并从那里进行调试,但是当我尝试部署它时会出现此错误

                Hi I am trying to experiment with gcm but unable to make it work. Don't know where I am messing with it, below is the error I am getting. I am trying to deploy my application directly on device and debug from there but when ever I try to deploy it gives this error

                Waiting for device.
                Target device: HT24LW108632
                Uploading file
                    local path: D:DataAndroidAndroidTestoutproductionAndroidTestAndroidTest.apk
                    remote path: /data/local/tmp/Android.Test
                Installing Android.Test
                DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/Android.Test"
                pkg: /data/local/tmp/Android.Test
                Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]
                

                AndroidManifest.xml

                <?xml version="1.0" encoding="utf-8"?>
                <manifest xmlns:android="http://schemas.android.com/apk/res/android"
                          package="Android.Test"
                          android:versionCode="1"
                          android:versionName="1.0">
                    <uses-sdk android:minSdkVersion="14"/>
                
                    <permission
                            android:name="Android.Test.permission.C2D_MESSAGE"
                            android:protectionLevel="signature" />
                    <uses-permission android:name="Android.Test.permission.C2D_MESSAGE" />
                    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
                    <uses-permission android:name="android.permission.WAKE_LOCK" />
                    <uses-permission android:name="android.permission.INTERNET" />
                    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
                
                
                
                    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
                        <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>
                        <receiver
                                android:name="com.google.android.gcm.GCMBroadcastReceiver"
                                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="Android.Test" />
                            </intent-filter>
                        </receiver>
                        <service android:name=".GCMIntentService" />
                    </application>
                </manifest>
                

                我的设备是 HTC OneX

                • 安卓版本:4.03
                • HTC Sense 版本:4.0
                • 软件编号:1.29.110.11
                • HTC SDK API 级别:4.12
                • HTC 扩展版本:HTCExtension_403_1_GA_7

                由于我是Android Sea的新鱼,请指导.

                Please guide as I am new fish in Android Sea.

                编辑-1:我注意到,如果我在下面发表评论,那么应用程序确实会部署并执行,但显然如果没有下面提到的许可,我就无法继续......请帮助......

                Edit-1: I have noticed that if I comment this below line then application does deploy and execute but obviously I cant go forward without below mentioned permission ... please help....

                <permission android:name="Android.Test.permission.C2D_MESSAGE"  android:protectionLevel="signature" />
                

                推荐答案

                将大写字母的名称包改为小写字母.

                Change name package with Caps letters to little letters.

                这篇关于如何在我的 android 应用程序中修复 INSTALL_PARSE_FAILED_MANIFEST_MALFORMED的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:使用 android 模拟器发送和接收文本 下一篇:如何使用 Eclipse 获取模拟器截图?

                相关文章

                1. <i id='0tebr'><tr id='0tebr'><dt id='0tebr'><q id='0tebr'><span id='0tebr'><b id='0tebr'><form id='0tebr'><ins id='0tebr'></ins><ul id='0tebr'></ul><sub id='0tebr'></sub></form><legend id='0tebr'></legend><bdo id='0tebr'><pre id='0tebr'><center id='0tebr'></center></pre></bdo></b><th id='0tebr'></th></span></q></dt></tr></i><div id='0tebr'><tfoot id='0tebr'></tfoot><dl id='0tebr'><fieldset id='0tebr'></fieldset></dl></div>
                    • <bdo id='0tebr'></bdo><ul id='0tebr'></ul>
                  1. <tfoot id='0tebr'></tfoot>
                  2. <small id='0tebr'></small><noframes id='0tebr'>

                  3. <legend id='0tebr'><style id='0tebr'><dir id='0tebr'><q id='0tebr'></q></dir></style></legend>