gitignore & init

This commit is contained in:
soraefir
2024-03-17 14:50:15 +01:00
parent 75dfdafebf
commit 7dc43c0682
58 changed files with 3060 additions and 0 deletions

18
settings.gradle Normal file
View File

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