David Albers
01/11/2021, 5:24 PMandroidx
libraries get bumped to alpha for the whole project. Anyone know what I’m doing wrong?David Albers
01/11/2021, 5:24 PMDavid Albers
01/11/2021, 5:24 PMtasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs += ["-Xallow-jvm-ir-dependencies", "-Xskip-prerelease-check"]
}
}
David Albers
01/11/2021, 10:41 PMexclude group: 'androidx.fragment'
to the module import like so:
implementation(project(':composelibname')) {
exclude group: 'androidx.fragment'
}
this excludes the part that was causing lint errors
I’m pretty sure this isn’t the correct solution 😄 but I think I understand what’s happeningJeremy
01/12/2021, 8:11 PMJeremy
01/12/2021, 8:14 PM