gpt4 book ai didi

Android Studio 2.0 - 带有 Gradle 的预览版 6

转载 作者:行者123 更新时间:2023-12-03 06:10:46 24 4
gpt4 key购买 nike

我正在使用 android Studio 2.0 preview 6 ,当我准备构建我的应用程序时遇到了这个问题

错误:(9, 0) 未找到 Gradle DSL 方法:'compile()'
可能原因:

  • 项目“RingButton”可能正在使用不包含该方法的 Gradle 版本。
    打开 Gradle 包装文件
  • 构建文件可能缺少 Gradle 插件。
    应用 Gradle 插件

  • 这是 build.gradle 文件

    顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。
    buildscript {
    repositories {
    jcenter()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:2.0.0-alpha5'
    compile 'com.victor.ringbutton:lib:1.0.1'

    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
    }

    任何帮助

    最佳答案

    打开您的 app:build.gradle 文件并将您的依赖项(编译'com.victor.ringbutton:lib:1.0.1')放在那里,如果它们是不属于此文件的外部依赖项仅属于 gradle 。
    您可以在项目结构中找到 app:build.gradle,只需从 android 更改为项目 View ,然后单击您的项目,然后单击应用程序,您就可以得到它 build.gradle 。请参阅附件

    关于Android Studio 2.0 - 带有 Gradle 的预览版 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34992531/

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