secp256k1-kmp/settings.gradle.kts

21 lines
535 B
Plaintext
Raw Normal View History

2020-06-26 13:48:50 +02:00
pluginManagement {
repositories {
mavenCentral()
2020-06-26 20:50:32 +02:00
google()
2020-06-26 13:48:50 +02:00
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/")
}
2020-06-26 20:50:32 +02:00
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.android.library") useModule("com.android.tools.build:gradle:${requested.version}")
}
}
2020-06-26 13:48:50 +02:00
}
rootProject.name = "secp256k1-kmp"