小编Sam*_*Sam的帖子

安装应用程式android时出现INSTALL_PARSE_FAILED_MANIFEST_MALFORMED错误

尝试安装我的应用时,我遇到了INSTALL_PARSE_FAILED_MANIFEST_MALFORMED错误。

我已经仔细研究了堆栈溢出时可用于此错误的所有解决方案。我的mainfest文件包名称中没有大写字母。

谁能指出可能是什么问题?

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

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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

    <uses-feature android:name="android.hardware.camera" />
    <uses-feature android:name="android.hardware.camera.autofocus" />

    <application
        android:name="com.punchtech.AppController"
        android:allowBackup="true"
        android:icon="@mipmap/new_logo"
        android:label="@string/app_name"
        android:theme="@style/LoginTheme">

        <activity
            android:name="com.punchtech.login_signup.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="com.punchtech.login_signup.Login_signup_Mainscreen" />

        <activity android:name="com.punchtech.login_signup.Login_screen" />

        <activity android:name="com.punchtech.login_signup.Signup_screen" />

        <activity
            android:name="com.punchtech.Bottombar_main"
            android:theme="@style/ForFragment"
            android:windowSoftInputMode="adjustPan" />

        <activity android:name="com.punchtech.Main_Post" />

        <activity android:name="com.punchtech.User_profile_all.Jump_userProfile" />

        <activity
            android:name="com.punchtech.CreatePunch.image_search_api"
            android:theme="@style/create_community" />

        <activity
            android:name="com.punchtech.CreatePunch.Tag_selection_create_punch"
            android:theme="@style/create_community" /> …
Run Code Online (Sandbox Code Playgroud)

android android-manifest

5
推荐指数
1
解决办法
2128
查看次数

标签 统计

android ×1

android-manifest ×1