Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for

Dagny ·
更新时间:2024-11-14
· 815 次阅读

Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for the main artifact of variant:’
解决方法:

确保在build.gradle文件中设置了applicationId “com.example.myapp”;

android {

defaultConfig {
applicationId “com.example.myapp”
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName “1.0”
}

}

且在 app -> Edit Configurations 选项中, 确保选中了 “Default Activity”;

原文链接

以下是我自己的解决方案:
app -> Edit Configurations -> Installation Options -> Deploy:选择Nothing;
在这里插入图片描述


作者:qq_33851090



com tools TO for id idea Android

需要 登录 后方可回复, 如果你还没有账号请 注册新账号