Failure [INSTALL_FAILED_INVALID_APK]

后端 未结 30 1510
庸人自扰
庸人自扰 2020-11-27 04:12

When I click to run a project I just created in Android Studio 0.2.10 and select my Android (connected by USB with debug by USB on) I get this error:

Waiting         


        
相关标签:
30条回答
  • 2020-11-27 04:23

    Your package name should include words combined by dots like com.example or prashant.mydairy..... it should work fine now

    files where you must update ur package name are as below: 1)Manifest file 2)Gradle file(module appp): applicationId "package.name"

    0 讨论(0)
  • 2020-11-27 04:25

    When I experienced this issue, what fixed it for me was making sure that the AndroidManifest.xml package name was the same as the build.grade applicationId.

    0 讨论(0)
  • 2020-11-27 04:25

    Force Stop the application in the device settings.

    0 讨论(0)
  • 2020-11-27 04:26

    If someone is still having issue then Build->Clean Project then Build->Rebuild project finally Sync project with Gradle file.

    0 讨论(0)
  • 2020-11-27 04:26

    taskAffinity name must have at least one '.' separator

    0 讨论(0)
  • 2020-11-27 04:27

    This helped in my case:

    Settings -> Apps -> Google Play Store -> Click "Enable" button.
    
    0 讨论(0)
提交回复
热议问题