当前位置: 首页 > 知识库问答 >
问题:

当我将手机更新到Android 12时,安装没有成功。无法安装应用程序:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

潘自强
2023-03-14

很遗憾,当我在手机上运行项目时,我将手机更新到Android 12,我正在完美地完成我的项目。错误显示:

安装未成功。无法安装应用程序:INSTALL _ PARSE _ FAILED _ MANIFEST _ formatted

apk列表:[0]“C:\ Users \ Microsoft \ androidstudio projects \ ymmy server \ app \ build \ outputs \ apk \ debug \ app-debug . apk”安装失败,原因是:“null”重试

这是我的版本。渐变(项目)文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.google.gms:google-services:4.3.10'
        classpath 'com.android.tools.build:gradle:4.0.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的身材。gradle(模块)html" target="_blank">文件:

plugins {
    id 'com.android.application'
}

android {
    compileSdkVersion 32
    buildToolsVersion "30.0.3"

    defaultConfig {
        applicationId "com.example.ymmyserver"
        minSdkVersion 30
        targetSdkVersion 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
dependencies {

    implementation 'com.github.jd-alexander:android-flat-button:v1.1'
//    implementation 'info.hoang8f:fbutton:1.0.5'
    implementation 'com.google.firebase:firebase-auth'
    implementation 'com.google.firebase:firebase-storage'
    implementation 'com.firebaseui:firebase-ui-database:8.0.0'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation "androidx.cardview:cardview:1.0.0"
    implementation "androidx.recyclerview:recyclerview:1.2.1"
    implementation 'com.rengwuxian.materialedittext:library:2.1.4'
    implementation 'com.google.firebase:firebase-core:10.2.0'
    implementation 'com.google.firebase:firebase-database'
    implementation 'com.google.firebase:firebase-analytics'
    implementation platform('com.google.firebase:firebase-bom:29.1.0')
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    implementation 'androidx.navigation:navigation-fragment:2.4.1'
    implementation 'androidx.navigation:navigation-ui:2.4.1'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

这是最主要的文件:

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Ymmy">
        <activity android:name=".FoodList"></activity>
        <activity
            android:name=".Home"
            android:label="@string/title_activity_home"
            android:theme="@style/Theme.Ymmy.NoActionBar"></activity>
        <activity android:name=".SignIn" />
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我该怎么办请帮帮我

共有2个答案

米飞龙
2023-03-14

通过在Mainifest文件中的主活动上添加android:exported="true "解决:

<activity android:name=".MainActivity"
        android:exported="true">
索梓
2023-03-14

尝试在活动的Android手册.xml文件中使用此标记

<activity 
   android:name=".MainActivity"
   android:exported="true">
 类似资料:
  • 这是我得到的错误 我甚至创建了一个新的hello world程序,但它仍然不能工作。哈普,我现在只是个实习生,这个bug阻碍了我的学习

  • 我在Play Store中有一个应用程序。 现在,我需要用更新的版本来更新它。在将其推送到Playstore之前,我想我会用APK检查迁移。 我从Playstore安装了现有版本。现在,我试图安装最新的(签名)apk。但它说,应用程序无法安装。 这个确切的案例正在与Playstore合作。我尝试了发行版。它工作正常。 我错过什么了吗。。? 提前谢谢

  • 在Android Studio3.6.3中 此错误表示当我单击“运行”按钮以在模拟器上安装程序时。 安装未成功。无法安装该应用程序。安装失败,原因是:“设备脱机”

  • 09/26 16:46:33:在Pixel 6 Pro API 33上启动“应用程序”。安装不成功。无法安装应用程序:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED apk列表:[0]'/Users/MAC/Desktop/Vault/code/Cal Vault/app/build/outputs/apk/debug/app-debug . apk '安装失败,原

  • 我正试图在我的小米红米S2上运行我的Android Studio 3.5应用程序。在手机上安装应用程序时,它会抛出一个错误: 安装未成功。< br >无法安装该应用程序。< br >安装失败,原因是:“null” 真实设备: 小米红米S2

  • 我无法通过Android Studio或手动复制APK在我的联想Phab PLUS(联想PB-1 770M,Android 5.1.1 API 22)上安装我的应用程序。 通过Android Studio:我得到错误失败安装APK[INSTALL_FAILED_DEXOPT]。它提示我,手机上可能有一个现有的应用程序,带有相同的过时的德克斯罐包,并提示我卸载现有的应用程序。然而,当我继续"是",它