Хорошо, мне было поручено перенести проект на AndroidX, чтобы уменьшить беспорядок в библиотеках поддержки в нашем проекте.Я включил AndroidX в соответствии с официальными документами, но теперь я получаю ошибки времени выполнения при попытке раздувать представления через соответствующие автоматически сгенерированные классы привязки, которые создаются при включении привязки данных в модуле gradle.
Копание вавтоматически сгенерированный источник, с которым я столкнулся, этот метод вызывает код:
public List<DataBinderMapper> collectDependencies() {
ArrayList<DataBinderMapper> result = new ArrayList(1);
result.add(new com.android.databinding.library.baseAdapters.DataBinderMapperImpl());
return result;
}
Как видите, автоматически сгенерированный код пытается создать экземпляр класса из com.android.databinding
пакет, но этот пакет не существует в выходном APK, так как я удалил зависимости поддержки из моего gradle (потому что AndroidX должен заменить их).Я вижу, что в androidx есть пакет привязки данных, поэтому я предполагаю, что выше сгенерированный код должен ссылаться на пакет androidx.databinding, но это не так.
Это ошибка в инструменте или я неправильно настроилчто-то?
Вот мой файл gradle (некоторые биты опущены из соображений безопасности):
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
//These variable refer to release builds so make sure they are correct. If you need to override them
//for some specific development needs then use variables that can be passed to gradle on command line.
String releaseVersionName = '1.0.0'
int releaseVersionCode = 1
int releaseMinSdk = 18
int releaseCompileSdkVersion = 28
android {
//Added as separate variable so it can be overridden from IDE to speed up compilation time
//Set minimum compilation sdk.
int developMinSdk = rootProject.hasProperty('productMinSdk') ?
rootProject.productMinSdk.toInteger() : releaseMinSdk
String developProductVersionName = rootProject.hasProperty('productVersionName') ?
rootProject.productVersionName : releaseVersionName
int developProductVersionCode = System.getenv("BUILD_ID") as Integer ?: releaseVersionCode
int developCompileSdk = rootProject.hasProperty('productCompileSdk') ?
rootProject.productCompileSdk.toInteger() : releaseCompileSdkVersion
defaultConfig {
applicationId "..."
compileSdkVersion developCompileSdk
minSdkVersion developMinSdk
targetSdkVersion developCompileSdk
versionCode developProductVersionCode
versionName developProductVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
...
}
sourceSets {
...
}
buildTypes {
debug {
signingConfig signingConfigs.release
dexOptions {
jumboMode = true
javaMaxHeapSize "1g"
}
multiDexEnabled true
matchingFallbacks = ['debug', 'release']
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
dexOptions {
jumboMode = true
javaMaxHeapSize "1g"
}
}
}
flavorDimensions "default"
productFlavors {
//noinspection GroovyMissingReturnStatement
develop {
applicationIdSuffix ".develop"
dimension "default"
sourceSets {
develop.java.srcDirs += 'src/develop/kotlin'
}
}
//Normal build for release
//noinspection GroovyMissingReturnStatement
playstore {
//In this flavour we use release* variable explicitly so they cannot be
//overridden by mistake
//Force min sdk version from the global variable
minSdkVersion releaseMinSdk
//Force version name from the global variables
versionName releaseVersionName
//Force version code from the global variable
versionCode releaseVersionCode
//Force compile and target sdk versions from the global variable
compileSdkVersion releaseCompileSdkVersion
targetSdkVersion releaseCompileSdkVersion
dimension "default"
sourceSets {
playstore.java.srcDirs += 'src/playstore/kotlin'
}
}
}
dataBinding {
enabled = true
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Runtime dep versions
def condecoCoreVersion = "0.1.3"
def appCenterVersion = "1.9.0"
def thirtyinchVersion = '0.9.0'
def stethoVersion = "1.5.0"
def leakCanaryVersion = '1.5.4'
def hahaVersion = "1.3"
def multiDexVersion = "2.0.0"
def constraintLayoutVersion = "1.1.3"
// Test dep versions
def jUnitVersion = "4.12"
// Std lib dependency
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: "$kotlin_version"
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: "$kotlin_version"
// Multidex dependency
implementation "androidx.multidex:multidex:$multiDexVersion"
// Junit dependency for testing
testImplementation "junit:junit:$jUnitVersion"
}
А вот мой файл gradle.properties:
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Use androidX to replace requirement for
# Support libraries to be imported via gradle
android.useAndroidX=true
# Jetifier automatically updates dependancy binaries
# To swap out support lib for androix
android.enableJetifier=true
РЕДАКТИРОВАТЬ: Ивот мой проект уровня gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.2.71'
gradle_plugin_version = '3.2.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}