Hey guys, I've updated my KMP's (and CMP's) librar...
# compose
r
Hey guys, I've updated my KMP's (and CMP's) library from compose 1.9.1 to 1.10.2, and apparently something about compose resources or its dependencies now require Android min SDK to be 23. I've tried to find release notes or other documentation referencing this, but no luck so far. Does someone know where I can read about this increase? Is it some transitive dependency of compose resources or was it a decision made at that level? Here's the error on the consuming side:
Copy code
Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than version 23 declared in library [org.jetbrains.compose.components:components-resources-android:1.10.2] /Users/rafael.costa/.gradle/caches/8.13/transforms/e017c12067e863f6a46eeee08ac9549d/transformed/library-release/AndroidManifest.xml as the library might be using APIs not available in 21
	Suggestion: use a compatible library with a minSdk of at most 21,
		or increase this project's minSdk version to at least 23,
		or use tools:overrideLibrary="org.jetbrains.compose.components.resources" to force usage (may lead to runtime failures)
So yeah, it's the upstream
👍 1
r
I figured it would be. Thank you 🙂