无法解析:androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1

问题描述 投票:0回答:7

我正在尝试理解 android 中的 ViewModel 和 LiveData 概念。我正在制作一个练习项目,但是当我在应用程序级别 gradle 文件中添加

implementation 'androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1'
行时,它向我显示了

未能解决: androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1.

我在谷歌上搜索了解决方案,我找到了this答案,当我仅编译viewmodel库时它可以工作,但是如果我使用与

implementation group: 'androidx.lifecycle', name:'lifecycle-extensions-ktx', version: '2.0.0-alpha1'
相同的方法编译扩展库,它会显示与上面相同的错误。 我还尝试在 Maven 存储库网站here 上找到它,但我没有任何有关如何编译它的信息。

更新

应用程序级别Build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "***************"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation group: 'androidx.lifecycle', name:'lifecycle-extensions-ktx', version: '2.0.0-alpha1'
    implementation group: 'androidx.lifecycle', name:'lifecycle-viewmodel-ktx', version: '2.0.0-alpha1'
}
android kotlin android-architecture-components android-viewmodel android-livedata
7个回答
16
投票

当前版本是2.2.0

使用 -ktx 进行 kotlin 实现 和 kapt 用于注释处理器

implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
annotationProcessor 'androidx.lifecycle:lifecycle-compiler:2.2.0'

查看开发者网站了解更多信息

https://developer.android.com/topic/libraries/architecture/adding-components


14
投票

更新

根据 @Dr.jacky 的评论和 Android 开发者文档,

生命周期扩展中的 API 已被弃用。相反,为您需要的特定生命周期工件添加依赖项。

更多信息请访问 https://developer.android.com/jetpack/androidx/releases/lifecycle


我找到了答案。正如

Thunder Knight
所说这里
it seems to be that the repository was emptied somehow. Hence, you can not download it from the repository.
。我同意这一点,所以我在 mvnrepository.com 上寻找答案,我在 here 找到了它。我必须补充一下

实现组:'androidx.lifecycle',名称:'lifecycle-extensions',版本:'2.0.0-alpha1'

用于添加生命周期扩展的行,而且我还在库的名称中添加了

-ktx
,但这是错误的。在 documentation 中,他们没有评论在
-ktx
行中添加
lifecycle-extensions

鸣谢:- @雷霆骑士


3
投票

只是不要在生命周期扩展中使用 -ktx 。与 viewmodel 不同,没有单独的“-ktx”版本的依赖项


0
投票

添加这些行

implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'

并评论这些行

// testImplementation 'junit:junit:4.13.2'
//androidTestImplementation 'androidx.test.ext:junit:1.1.2'
//androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

0
投票

就我而言,我尝试将房间与 LiveData 一起使用。我所做的就是从查询方法中删除挂起关键字。

参考:在forums.bignerdranch.com发帖


0
投票

错误:

Failed to resolve: androidx.lifecycle:lifecycle-extensions:2.3.1

解决方案:

生命周期扩展中的 API 已被弃用。相反,为您需要的特定生命周期工件添加依赖项。

更多详情:developer.android.com


0
投票

这是专门针对 React-Native 的。如果您在尝试在 vscode 中运行 android 应用程序时遇到 Adroidx 问题,请在 android studio 中打开反应式本机应用程序的 android 文件夹,让它发挥作用,您只需要解决 android studio 突出显示的任何问题即可完成后关闭 android studio 并尝试再次在 vscode 中运行应用程序

© www.soinside.com 2019 - 2024. All rights reserved.