如何使Android Jetifier与数据绑定一起使用?

时间:2019-04-01 04:09:18

标签: android android-constraintlayout android-databinding androidx android-jetifier

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

boo模块中,我想添加一个同时依赖于支持库和使用数据绑定的新库。

我在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使用AndroidX的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.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。该模块取决于同时使用数据绑定和支持库的库。

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,但似乎无法将从数据绑定生成的ConstraintLayout转换为AndroidX。

2 个答案:

答案 0 :(得分:0)

不,它不是那样工作的    如果要使用AndroidX,则必须使用所有AndroidX库,而不要使用库    所以代替这个:

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

使用此:

implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

答案 1 :(得分:-1)

使用独立的jetifier将您的库转换为androidX,看看是否有帮助。

./jetifier-standalone -i libraryToProcess.aar -o result.aar