gpt4 book ai didi

android - 如何使 Android Jetifier 与数据绑定(bind)一起工作?

转载 作者:行者123 更新时间:2023-11-29 02:21:17 26 4
gpt4 key购买 nike

我的 Android 项目有 2 个 Android 库模块:appbooapp 模块已经迁移到 AndroidX,boo 仍在使用支持库。

boo 模块中,我想添加一个依赖于支持库并使用数据绑定(bind)的新库。

我在我的 gradle.properties 中启用了 Android Jetifier。我正在使用 Android Gradle 构建工具 v.3.3.2 和 Gradle v.5.3.1。

这是我的 gradle.properies

org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
android.useAndroidX=true
android.enableJetifier=true

我的 app 的 build.gradle 使用 AndroidX。

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.example"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

dataBinding {
enabled = true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
nit:4.12'
implementation project(':boo')
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.appcompat:appcompat:1.0.2'
}

我的 boo 的 build.gradle。该模块依赖于同时使用数据绑定(bind)和支持库的库。

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

dataBinding {
enabled = true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}


}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation <library with support library and data binding>

databinding/LayoutWallBinding.java:13: error: cannot find symbol
public final android.support.constraint.ConstraintLayout orderingLayout;
^
symbol: class ConstraintLayout
location: package android.support.constraint

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':editor:kaptDebugKotlin'.

我希望 Android Jetifier 将所有支持库转换为 AndroidX,但它似乎无法将数据绑定(bind)生成的 ConstraintLayout 转换为 AndroidX。

最佳答案

不,它不是那样工作的 如果你想使用 AndroidX 那么你必须使用所有的 AndroidX 库而不是 Support libs 所以代替这个:

implementation'com.android.support.constraint:constraintlayout:1.1.3'

使用这个:

implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

关于android - 如何使 Android Jetifier 与数据绑定(bind)一起工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55447993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com