gpt4 book ai didi

android - 该项目正在使用不受支持的 Android Gradle 插件版本 (0.7.3)

转载 作者:太空狗 更新时间:2023-10-29 15:03:56 25 4
gpt4 key购买 nike

我尝试将我的一个旧项目(用 Windows 编写)导入到 Android Studio(现在是 mac)。

但是,我从 Gradle 收到以下错误:

Gradle project sync failed. Basic functionality (e.g. editing, debugging) will not work properly.

事件日志上写着:

Error:The project is using an unsupported version of the Android Gradle plug-in (0.7.3).

Version 0.9.0 introduced incompatible changes in the build language. Please read the migration guide to learn how to update your project. Open migration guide, fix plug-in version and re-import project

这是我的build.gradle:

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.3'
}
}
apply plugin: 'android'

repositories {
mavenCentral()
}

android {
compileSdkVersion 19
buildToolsVersion "19.0.0"

defaultConfig {
minSdkVersion 9
targetSdkVersion 16
}
buildTypes {
release {
runProguard true
proguardFile getDefaultProguardFile('proguard-android.txt')
}
}
}

dependencies {
compile 'com.android.support:appcompat-v7:+'
compile 'com.google.android.gms:play-services:4.0.30'
compile 'com.android.support:support-v4:18.0.0'
}

谁能指出可能的解决方案?

最佳答案

错误消息表明您的 Android Studio 版本需要比 0.7.3 更高版本的 Gradle Android 插件(请参阅 buildscript block )。将其升级到 0.9.0 并再次尝试导入项目。

关于android - 该项目正在使用不受支持的 Android Gradle 插件版本 (0.7.3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23671383/

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