问题描述
我已将 Android Studio 更新为最新的 Canary 版本,但现在我无法运行我的应用.
I've updated Android Studio to the latest canary build and now I can't run my app.
每次我尝试构建项目时都会出现以下错误:
Every time when I try to build the project I get the following error:
Error:F:\...\**app_name**\app\build\intermediates\instant-run-support\debug\slice_0\AndroidManifest.xml:2 attribute 'android:versionCode' not found
我尝试手动打开该文件,但该属性显然存在:
I tried to manually open the file and the attribute is clearly there:
<?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>
我尝试清理项目、使缓存无效、重新启动 android studio,但没有任何帮助.
I've tried to clean the project, invalidate cache, restart android studio but nothing helped.
这是我的 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'
}
推荐答案
此问题与 Instant Run 严格相关.解决方法:在 File
-> Settings/Preferences
中禁用它.这至少可以让您在 Canary 版本的 AS 中运行您的应用.
This issue is strictly related to Instant Run. Workaround: disable it inside File
-> Settings/Preferences
. This will at least allow you to run your app in the Canary version of AS.
这篇关于Android Studio 3.0 Canary 2:未找到属性“android:versionCode"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!