Anybody know how to fix this: ```e: This version (...
# compose
d
Anybody know how to fix this:
Copy code
e: This version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.30 but you appear to be using Kotlin version 1.4.31 which is not known to be compatible.  Please fix your configuration (or `suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!).
All my dependencies are
1.0.0-beta05
so this error seems impossible. EDIT: Fixed
c
What was the root cause?
g
Try:
Copy code
composeOptions {
		kotlinCompilerExtensionVersion = compose_version
	}
in your apps gradle file
d
@Colton Idle ☝️