initial commit

This commit is contained in:
Owen LeJeune
2022-09-12 21:38:44 -04:00
commit 9d1450e848
47 changed files with 1356 additions and 0 deletions

18
settings.gradle Normal file
View File

@@ -0,0 +1,18 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
rootProject.name = "MYDex"
include ':app'