Create top-level gradle project; remove duplicated gradle wrappers

This commit is contained in:
2021-01-05 22:03:01 -06:00
parent 2f39b63723
commit 7ee3e00e49
25 changed files with 17 additions and 864 deletions

16
settings.gradle Normal file
View File

@@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
jcenter()
google()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.android.application") {
useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}
}
include ':uhabits-android', ':uhabits-core', ':uhabits-server'