我有一个Android项目已迁移到AndroidX。在某个时候,我想添加一个新的库。 该库正在使用具有数据绑定功能的支持库。
我在gradle.properties中启用了Android Jetifier。我正在使用Android Gradle构建工具v.3.3.2和Gradle v.4.10.1。
这是我的gradle.properties:
org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
android.useAndroidX=true
android.enableJetifier=true
这是我的build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.test"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dataBinding {
enabled = true
}
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '28.0.0'
}
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation <library with AndroidX and data binding>
}
我在编译时遇到以下错误。
Task :app:compileDebugJavaWithJavac FAILED
GallerypickerBinding.java:22: error: package android.support.constraint does not exist
private final android.support.constraint.ConstraintLayout mboundView0;
GallerypickerBinding
是从新添加的库的数据绑定生成的类。
当我检查此文件时,它使用的是AndroidX中的androidx.databinding.ViewDataBinding
,但在同一文件中,它仍然使用支持库中的android.support.constraint.ConstraintLayout
。
我希望Android Jetifier可以将所有支持库都转换为AndroidX,但是似乎无法将从数据绑定生成的ConstraintLayout转换为AndroidX。
答案 0 :(得分:0)
您必须在java文件和xml文件中更改软件包名称。
com.android.support.constraint to androidx.constraintlayout
答案 1 :(得分:0)
对于Kotlin,请替换此依赖项:
implementation "androidx.appcompat:appcompat:1.0.0-beta01"
使用这些(不确定是否还需要第二个,但这是非常必要的):
implementation "androidx.appcompat:appcompat:1.0.2"
implementation "androidx.core:core-ktx:1.0.1"
对于该数据绑定错误...清理项目-或尝试一次将旧的com.android.support.constraint
包添加到依赖项中,以使其停止抱怨(仅用于测试,它将得到它是对命名空间的重写)。如果这样做没有帮助,请在问题中添加Gallerypicker.java
及其XML,以供进一步检查。
@ Suraj Singh关于资源可能是正确的-如果是这样,他的答案应该是被接受的。