mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 00:27:02 +05:30
10 lines
249 B
Kotlin
10 lines
249 B
Kotlin
plugins { `lobsters-plugin` }
|
|
|
|
subprojects {
|
|
configurations.configureEach {
|
|
resolutionStrategy {
|
|
// Retrofit depends on a very old version of Moshi that causes moshi-ksp to fail
|
|
force(Dependencies.ThirdParty.Moshi.lib)
|
|
}
|
|
}
|
|
}
|