initial commit

This commit is contained in:
Henry Hiles 2023-03-28 10:30:49 -04:00
commit 6936eab685
70 changed files with 2398 additions and 0 deletions

16
settings.gradle Normal file
View file

@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "WeatherApp"
include ':app'