Bump XProcessing, KSP, and Kotlin versions to latest.
There was a breaking change in the room compiler processing library, this version is compatible with Room 2.6.0-alpha01 and will fail if earlier versions are used. This dependency must be the same for all other annotation processors that also use this library, such as Epoxy.
Bump XProcessing, KSP, and Kotlin versions to latest.
Paris now supports Kotlin Symbol Processing for faster builds! https://github.com/google/ksp
Breaking changes needed to support KSP:
- ParisConfig annotation can no longer be used on package elements, only on class or interfaces
- R class references used in annotations cannot be star imported
- Added
aggregateStyleablesOnClassPath
parameter to @ParisConfig. This must now be set to true to have the module generate a Paris class using only classpath dependencies if there are no Styleables in the module sources.
Note: Due to a bug in KSP (google/ksp#630) it is recommended to disable KSP incremental compilation until the bug is fixed in KSP, otherwise you may encounter spurious build failures.
Additionally, if you are using R2 generation via the butterknife gradle plugin you must configure KSP to be aware of those generated sources.
This can be done either via the experiment KSP setting allowSourcesFromOtherPlugins
// build.gradle.kts
ksp {
allowSourceFromOtherPlugins=true
}
Or by manually registering R2 sources as an input to KSP
// In a gradle plugin or build.gradle.kts
project.afterEvaluate {
setUpR2TaskDependency()
}
fun Project.setUpR2TaskDependency() {
requireAndroidVariants().forEach { variant ->
val r2Task = runCatching { project.tasks.named("generate${variant.name.capitalize()}R2") }.getOrNull()
if (r2Task != null) {
project.tasks.named("ksp${variant.name.capitalize()}Kotlin").dependsOn(r2Task)
project.extensions.configure(KotlinAndroidProjectExtension::class.java) {
sourceSets.getByName(variant.name)
.kotlin
.srcDir("build/generated/source/r2/${variant.name}")
}
}
}
}
/**
* Return the Android variants for this module, or error if this is not a module with a known Android plugin.
*/
fun Project.requireAndroidVariants(): DomainObjectSet<out BaseVariant> {
return androidVariants() ?: error("no known android extension found for ${project.name}")
}
/**
* Return the Android variants for this module, or null if this is not a module with a known Android plugin.
*/
fun Project.androidVariants(): DomainObjectSet<out BaseVariant>? {
return when (val androidExtension = this.extensions.findByName("android")) {
is LibraryExtension -> {
androidExtension.libraryVariants
}
is AppExtension -> {
androidExtension.applicationVariants
}
else -> null
}
}
- Fix generated code consistency in module class (#154)
- Fixed ArrayOutOfBoundsException on certain devices when ImageView scaleType is set.
-
Change
ParisConfig
annotation to be applicable to class or interface types. New recommendation is to use it on an interface instead of a package to avoid a bug with spurious incremental annotation failure. -
Fixed annotation processor bugs with Kotlin 1.4. Project should now be compatible with Kotlin 1.4.x - previous Paris versions would crash at compile time.
- Adding support for importantForAccessibility attribute (#138)
- Adds support for incremental annotation processing
- Added support for namespaced resources.
- Fixed precedence of
android:textAppearance
attribute. - Fixed theme attributes not being applied through programmatic styles.
- New attribute support:
- View:
android:layout_weight
- TextView
android:line_height
android:text_appearance
- View:
- Now using Kotlin nullable types in generated extension functions, rather than
@Nullable
.
- Updated KotlinPoet dependency to 1.0.0.
- Added
@RequiresApi
to style builder functions when appropriate.
- Set Android version to 28.
- Migrated to AndroidX.
- Updated dependencies (ButterKnife, ConstraintLayout, Gradle, Kotlin, Mockito, Testing Compile).
- Fixed Samsung-specific crash related to
android:elevation
on Android version 19.
- Updated the sample app.
- Annotations are now included in the "paris" artifact.
- New attribute support:
- View
android:backgroundTint
android:backgroundTintMode
android:layout_marginHorizontal
android:layout_marginVertical
- TextView
android:drawablePadding
android:fontFamily
android:inputType
android:hint
android:maxWidth
android:textStyle
- View
- Added support for null attribute values.
- Kotlin support:
- Extensions are now generated for styleable views as an alternative to calling
Paris…
. - Added support for
@Styleable
Kotlin classes.
- Extensions are now generated for styleable views as an alternative to calling
- Clarified various error messages.
- Bugs:
- Fixed password inputType + singleLine bug.
- Fixed precedence of margin and padding attribute.
- Fixed compound drawables not using intrinsic bounds.
- Apply styles programmatically at any time.
- Combine multiple styles together.
- Create styles programmatically (as opposed to using XML).
- Use annotations to easily support custom attributes.
- Declare explicitly supported styles for your custom views.
- And much more...