热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

AndroidStudio3.0Canary2:找不到属性'android:versionCode'

如何解决《AndroidStudio3.0Canary2:找不到属性'android:versionCode'》经验,为你挑选了2个好方法。

我已经将Android Studio更新为最新的canary版本,现在我无法运行我的应用程序.

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

Error:F:\...\**app_name**\app\build\intermediates\instant-run-support\debug\slice_0\AndroidManifest.xml:2 attribute 'android:versionCode' not found

我试图手动打开文件,属性显然在那里:




我试图清理项目,使缓存无效,重新启动android studio但没有任何帮助.

这是我的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'
}

Alex Newman.. 15

此问题与Instant Run严格相关.解决方法:在里面禁用它File- > Settings/Preferences.这至少可以让您在Canary版本的AS中运行您的应用程序.



1> Alex Newman..:

此问题与Instant Run严格相关.解决方法:在里面禁用它File- > Settings/Preferences.这至少可以让您在Canary版本的AS中运行您的应用程序.



2> alexpfx..:

自Android Studio 3.0 Canary 6以来,这个bug就解决了,只需更新android studio和所有SDK组件并重新启动Android Studio.

测试:

Build#AI-171.4163606,建于2017年7月7日JRE:1.8.0_152-release-884-b01 amd64 JVM:OpenJDK 64位服务器VM by JetBrains sro Windows 10 10.0


推荐阅读
author-avatar
樊家醪糟律_905
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有