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

Android Studio 3.0金丝雀2:未找到属性'Android:versioncode'

姜献
2023-03-14

我已经将Android Studio更新到了最新的金丝雀版本,现在我无法运行我的应用程序。

每次当我尝试构建项目时,我都会得到以下错误:

Error:F:\...\**app_name**\app\build\intermediates\instant-run-support\debug\slice_0\AndroidManifest.xml:2 attribute 'android:versionCode' not found
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="****"
      android:versionCode="1"
      android:versionName="1.0"
      split="lib_slice_0_apk">
</manifest>

这是我的build.gradle(app)文件:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "****"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    compile 'com.android.support:appcompat-v7:25.3.1'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
}

共有1个答案

狄玉书
2023-03-14

这个问题与即时运行严格相关。解决方法:在文件->设置/首选项中禁用它。这将至少允许您在金丝雀版本的AS中运行您的应用程序。

 类似资料:
  • 本文向大家介绍什么是金丝雀发布(Canary Releasing)?相关面试题,主要包含被问及什么是金丝雀发布(Canary Releasing)?时的应答技巧和注意事项,需要的朋友参考一下 金丝雀发布是一种降低在生产中引入新版本软件风险的技术。通过在将更改传递给整个基础架构之前将更改缓慢地推广到一小部分用户来完成的。

  • 我有以下实体: 然后我创建我的存储库: 但我一开始就收到: 未找到MyTable类型的属性getCountOf 我到底做错了什么?

  • 使用材质组件时无法运行project。 错误日志: Android资源链接输出失败:D:\Android Projects\Ghar3\app\src\main\res\layout\main\u layout。xml:23:错误:未找到fabAttached属性(又名com.reseaction.ghar:fabAttached)。错误:链接文件资源失败。 命令:C:\Users\Abdul Q

  • 今天早些时候,我正在开发Android Studio Arctic Fox 2020 1.1.3 beta 3,并决定升级到最新版本,因此安装这个新版本。安装新版本后,emulator第一次在我的m1 mba上工作,但后来突然停止工作。当我构建并运行我的项目时,它会在我的活动监视器中显示“等待设备上线”和名为qemu-system-aarch64的进程,但emulator不会显示在android

  • 我决定是时候学习如何使用泄漏金丝雀来检测我的应用程序中的泄漏了,就像我一直做的那样,我尝试在我的项目中实现它,以真正了解如何使用该工具。实现它很容易,困难的部分是阅读工具向我扔回来的东西。我有一个scrollview,当我上下滚动时,它似乎在内存管理器中积累内存(即使它没有加载任何新数据),因此我认为这是跟踪泄漏的一个很好的候选对象,结果如下: 它看起来像v7。小装置。RecyclerView正在

  • 我最近开始使用ReactiveCouchbase Repository(sping-data-Couchbase-3.0.0。M2,Spring-引导-启动器-父-2.0.0。M2)在我们的一个项目中。 我从这里引用了未发布的文档并设置了项目,但我得到了以下错误。 以下是关于设置我的项目的相关信息。 @Maven @爪哇 现在,我确实经历了这个和这个,但在这里,我没有在DummyRepositor