And migrate the code to use the public API only. This version doesn't include the Kermit logging library which would have required a minSdk raise.
23 lines
458 B
Groovy
23 lines
458 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
name = 'Central Portal Snapshots'
|
|
url = uri('https://central.sonatype.com/repository/maven-snapshots/')
|
|
}
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Binary Eye"
|
|
include ':app'
|