gpt4 book ai didi

更新后找不到android:versionCode

转载 作者:行者123 更新时间:2023-11-29 19:13:12 26 4
gpt4 key购买 nike

我已将 Android Studio 更新到最新的 Canary,我的应用现在无法构建。
我尝试手动添加版本代码。
我已经试过了

File > Invalidate Caches & Restart

但它没有用。这是我的 build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.rishav.sql"
minSdkVersion 25
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(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'

compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}

//顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

这是我的 list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rishav.sql">

<application
android:allowBackup="true"

android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

最佳答案

编辑:

此错误已在上一个 Canary 版本中解决:

Android Studio 3.0 Canary 4 Build #AI-171.4101728,构建于 2017 年 6 月 14 日 JRE:1.8.0_112-release-736 amd64

只需更新 android studio。

--

在 Android 设置中禁用即时运行。目前看来,即时运行似乎无法解决此问题。

我尝试了这个线程中指出的所有解决方案,但没有任何效果:

Android Studio 3.0 Canary 2: attribute 'android:versionCode' not found

关于更新后找不到android:versionCode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44486142/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com