web-dev-qa-db-ja.com

解決に失敗しました:androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1

AndroidのViewModelとLiveDataの概念を理解しようとしています。練習プロジェクトを作成していますが、アプリレベルのgradleファイルにimplementation 'androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1'行を追加すると表示されます

解決に失敗しました:androidx.lifecycle:lifecycle-extensions-ktx:2.0.0-alpha1。

グーグルで解決策を検索したところ、 this 回答が見つかりました。ビューモデルライブラリのみをコンパイルすると機能しますが、implementation group: 'androidx.lifecycle', name:'lifecycle-extensions-ktx', version: '2.0.0-alpha1'と同じメソッドを使用して拡張ライブラリをコンパイルすると、次のように同じエラーが表示されます。上記。 Mavenリポジトリサイトでも見つけようとしました ここ ですが、コンパイル方法に関する情報がありませんでした。

更新

アプリレベルの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'
}
4
Jaydip Kalkani

私は答えを見つけました。 Thunder Knightが言ったように ここit seems to be that the repository was emptied somehow. Hence, you can not download it from the repository.。私はこれに同意するので、 mvnrepository.com で答えを探していましたが、それを見つけました ここ 。追加する必要があります

実装グループ: 'androidx.lifecycle'、名前: 'lifecycle-extensions'、バージョン: '2.0.0-alpha1'

ライフサイクル拡張機能を追加するための行と、ライブラリの名前に-ktxを追加していましたが、それは間違いでした。 ドキュメント では、-ktxの行にlifecycle-extensionsを追加するようにコメントしていません。

クレジット:- @ Thunder Knight

3
Jaydip Kalkani

ライフサイクル拡張で-ktxを使用しないでください。ビューモデルとは異なり、依存関係の個別の「-ktx」バージョンはありません

2
Rahul Katte

現在のバージョンは2.0.0です

kotlinの実装には-ktxを使用し、annotationProcesssorにはkaptを使用します

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

1
Jiten Basnet