secp256k1-kmp/settings.gradle.kts
2020-06-26 20:50:32 +02:00

21 lines
535 B
Plaintext

pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-eap")
}
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://plugins.gradle.org/m2/")
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.android.library") useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}
rootProject.name = "secp256k1-kmp"