gpt4 book ai didi

android - 如何导入和使用 android x 库

转载 作者:行者123 更新时间:2023-12-02 02:53:21 36 4
gpt4 key购买 nike

我想使用一个库来获取用户的日期。

我使用的项目需要添加AndroidX库中的库和类。

一旦我通过添加模块或向 gradle 添加直接命令来添加此项目,就会出现以下错误:

所用项目的链接: https://github.com/wdullaer/MaterialDateTimePicker

错误:

Failed to resolve: androidx.appcompat:appcompat:1.0.2
Failed to resolve: androidx.recyclerview:recyclerview:1.0.0

构建.gradle:

 apply plugin: 'com.android.application'
android {

compileSdkVersion 28
defaultConfig {
applicationId "com.**********"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildToolsVersion '28.0.3'
compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}buildscript {

repositories {
google()
jcenter()
mavenCentral()
}
dependencies {

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

implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-vector-drawable:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:gridlayout-v7:28.0.0'
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.12'
implementation 'com.wdullaer:materialdatetimepicker:4.1.2'
}

如果在gradle中添加以下命令,会看到如下错误

dependencies {
...

implementation 'com.wdullaer:materialdatetimepicker:4.1.2'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.recyclerview:recyclerview:1.0.0'

}

错误:

Failed to resolve: androidx.appcompat:appcompat:1.0.2
Failed to resolve: androidx.recyclerview:recyclerview:1.0.0

我没有太多关于AndroidX库的信息,但我不认为有这样的库。

如何修复它?

这个问题有解决办法吗?

最佳答案

您可以通过以下步骤轻松迁移到 AndroidX:

1- 首先您的 Android Studio 版本必须是 3.2.+

2- 从菜单中选择 重构 -> 迁移到 AndroidX

Android Studio 将向您显示要更改的引用。选择Do Refactor并等待几秒钟,我希望这可以解决您的问题。

关于android - 如何导入和使用 android x 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54615131/

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