gpt4 book ai didi

android - 找不到属性 'VERSION_CODE'

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:57:42 32 4
gpt4 key购买 nike

我想在我的项目中使用这个库,但当我尝试打开这个 library (FloatingActionButton) 时出现错误来源来自 Github。

当我试图打开源代码来理解它时,我将这个项目下载为 zip,我得到了这个错误:

Error:(10, 0) Could not find property 'VERSION_CODE' on project ':library'.

添加build.gradle

apply plugin: 'com.android.library'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 22
versionCode Integer.parseInt(project.VERSION_CODE)
versionName project.VERSION_NAME
}
buildTypes {
release {
minifyEnabled false
debuggable false
}

debug {
minifyEnabled false
debuggable true
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

apply from: '../gradle-mvn-push.gradle'

最佳答案

将库作为模块导入,将versionCodeversionName更改为随机值,添加对项目的引用 - 添加到依赖项
编译项目(“:库”)
并删除:

apply from: '../gradle-mvn-push.gradle'

关于android - 找不到属性 'VERSION_CODE',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31569674/

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