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

时间:2018-06-17 04:21:48

标签: android kotlin android-architecture-components android-viewmodel android-livedata

我试图了解android中的ViewModel和LiveData概念。我正在制作练习项目,但当我在我的应用级gradle文件中添加implementation 'androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1'行时,它会显示我

  

无法解决:   androidx.lifecycle:生命周期的扩展-KTX:2.0.0-α1

我在google上搜索了解决方案,我发现this回答,当我只编译viewmodel库但是如果我使用与implementation group: 'androidx.lifecycle', name:'lifecycle-extensions-ktx', version: '2.0.0-alpha1'相同的方法编译扩展库时它会起作用,它会显示与以上。 我也尝试在Maven存储库网站here上找到它,但我没有任何关于如何编译它的信息。

更新

App Level 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'
}

6 个答案:

答案 0 :(得分:1)

我找到了答案。正如Thunder Knight所说here it seems to be that the repository was emptied somehow. Hence, you can not download it from the repository.。我同意这一点,所以我在mvnrepository.com寻找答案,我发现它here。我必须添加

  

实施小组:' androidx.lifecycle',名称:'生命周期扩展',版本:' 2.0.0-alpha1'

添加生命周期扩展的行,我也在库中添加了-ktx,但这是错误的。在documentation中,他们没有评论-ktx添加lifecycle-extensions

致谢: - @Thunder Knight

答案 1 :(得分:0)

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

答案 2 :(得分:0)

当前版本为2.0.0

使用-ktx进行Kotlin实施    和kapt标记为CommentProcesssor

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

查看开发者网站以获取更多信息

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

答案 3 :(得分: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'

答案 4 :(得分:0)

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

参考:post in forums.bignerdranch.com

答案 5 :(得分:0)

错误:

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

解决方案:

<块引用>

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

更多详情:developer.android.com