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

      How to fix INSTALL_PARSE_FAILED_MANIFEST_MALFORMED in my android application(如何在我的 android 应用程序中修复 INSTALL_PARSE_FAILED_MANIFEST_MALFORMED)

          <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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)

                    <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>
                      • <tfoot id='0tebr'></tfoot>
                      • <small id='0tebr'></small><noframes id='0tebr'>

                          <tbody id='0tebr'></tbody>

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