gpt4 book ai didi

android - 试图将模块添加到项目中。 Gradle DSL 方法未找到 : 'versionName()'

转载 作者:行者123 更新时间:2023-12-03 05:35:07 34 4
gpt4 key购买 nike

我正在尝试将 epub 阅读器库添加到我已经创建的项目中。我试图作为模块添加到我的项目中的库是 Folio Reader Library (https://github.com/FolioReader/FolioReader-Android)。我已经在我的计算机上下载了这个库,并尝试通过文件 -> 新建 -> 导入模块添加它。但是,在此过程中,我收到了无数错误。我现在的一个是这样的:

Gradle DSL method not found: 'versionName()'
Possible causes:
The project 'FolioReader-Android-master' may be using a version of the
Android Gradle plug-in that does not contain the method (e.g.
'testCompile' was added in 1.1.0).
Upgrade plugin to version 3.4.1 and sync project

The project 'FolioReader-Android-master' may be using a version of Gradle
that does not contain the method.
Open Gradle wrapper file

The build file may be missing a Gradle plugin.
Apply Gradle plugin

该文件是为库声明依赖项的文件。

FolioReader-Android-master:
build.gradle file:

// Top-level build file where you can add configuration options common to
all sub-projects/modules.

buildscript {
apply from: 'versions.gradle'

repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'


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

//moj
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.11"
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'



}
}

allprojects {

configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, 'seconds'
}
}

repositories {
mavenLocal()
google()
jcenter()
maven { url "https://jitpack.io" }
}
}

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

错误本身说明问题的出现是因为项目使用的 Gradle 插件版本可能不包含该方法。我已将版本更新到最新版本,但我仍然收到此错误。关于如何解决这个问题的任何建议?

最佳答案

问题通过更换解决

versionName 1


versionName "1.1"

在模块级 build.gradle 文件中。

关于android - 试图将模块添加到项目中。 Gradle DSL 方法未找到 : 'versionName()' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56850745/

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