我正在开发Android MVVM应用程序。我只是手动切换到androidx库。这是我的build.gradle中的库:
implementation 'com.google.code.gson:gson:2.8.5'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
implementation 'androidx.constraintlayout:constraintlayout:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0-rc02'
implementation 'com.google.android.material:material:1.0.0-rc01'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
implementation 'com.airbnb.android:lottie:2.5.5'
implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-runtime:2.0.0-rc01'
implementation "androidx.lifecycle:lifecycle-common-java8:2.0.0-rc01"
implementation "androidx.lifecycle:lifecycle-reactivestreams:2.0.0-rc01"
testImplementation "androidx.arch.core:core-testing:2.0.0-rc01"
implementation "androidx.room:room-runtime:2.0.0-rc01"
annotationProcessor "androidx.room:room-compiler:2.0.0-rc01"
implementation "androidx.room:room-rxjava2:2.0.0-rc01"
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
我更改了代码和布局文件中的所有内容,所有导入内容等。 Gradle可以成功构建。
在我的MainActivity中,我有以下代码:
viewModel = ViewModelProviders.of(this).get(MainViewModel.class);
binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
binding.setVariable(BR.viewModel, viewModel);
binding.setLifecycleOwner(this);
这是MainActivity中唯一不显示androidx版本的软件包:
import android.databinding.DataBindingUtil;
其他所有软件包都显示了自己的androidx
版本。删除导入时,我只能选择android
版本,而不能选择androidx
。
我收到以下错误:binding.setLifecycleOwner(this);
这是因为DatabindingUtil
仍然引用android.databinding
包而不是androidx.databinding
包。我的Android Studio告诉我,传递给方法setLifecycleOwner的参数必须为anndroid.arch.lifecycle.LifecycleOwner
类型。
我不知道为什么无法导入androidx.databinding.DatabindingUtil
软件包。有谁知道我该如何解决这个问题?
我确实尝试过重建缓存并使缓存无效并重新启动。
答案 0 :(得分:6)
确保您使用的是Android Studio 3.2 RC 2
在gradle.properties
文件下面添加2行
android.useAndroidX = true
android.enableJetifier = true
答案 1 :(得分:5)
问题是我尝试手动进行。所以我升级到了Android Studio 3.2 RC 2。 之后,我使用了Android Studio的迁移功能。
要获取Android Studio中的迁移功能,请转到>重构>迁移到AndroidX ...
当Android Studio在此之后给您错误时,请尝试重建或使用>“文件”>“使缓存无效并重新启动”。
正如@cchcc所指出的,不要忘记将其添加到您的gradle.properties
:
android.useAndroidX=true
android.enableJetifier=true
答案 2 :(得分:2)
我很想念
android {
dataBinding {
enabled = true
}
}