touchlab / KMMBridgeKickStart

Apache License 2.0
32 stars 4 forks source link

Update Plugin resolutionStrategy #23

Closed samhill303 closed 2 years ago

samhill303 commented 2 years ago

in settings.gradle.kts we have the following code:

    resolutionStrategy {
        eachPlugin {
            if (requested.id.namespace == "com.android" || requested.id.name == "kotlin-android-extensions") {
                useModule("com.android.tools.build:gradle:7.0.4")
            }
        }
    }

Is this still needed? If so what does it do? If not let's remove it.

If we do keep it, we should try to move the version number somewhere central