gpt4 book ai didi

android - 我无法安装 androidx.preference 库

转载 作者:行者123 更新时间:2023-12-03 05:28:24 25 4
gpt4 key购买 nike

我想从 androidx 安装首选项库。当我去项目结构添加这个库时:
1.我没有1.1.0版本。我只有 1.1.0-alpha05 和 1.0.0 版本。
2.当我想安装这个库的任何版本时,我得到:
错误:无法解决:androidx.preference:preference:VERSION

** 我对其他库没有同样的问题

这是我的 gradle (app) 模块:

    apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.notebook_v2"
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'androidx.appcompat:appcompat:1.0.2'

}

这是 gradle(project) 模块:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

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


}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'

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


allprojects {
repositories {
google()
jcenter()

}
}

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

最佳答案

尝试实现这一点

implementation 'androidx.preference:preference:1.1.0'

也许您需要更新构建工具

关于android - 我无法安装 androidx.preference 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60397057/

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