Initial commit

This commit is contained in:
Kevin Alberts 2024-12-27 01:17:26 +01:00 committed by GitHub
commit 2a6c87df54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 1398 additions and 0 deletions

18
settings.gradle.kts Normal file
View file

@ -0,0 +1,18 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Projectivy Wallpaper Provider"
include(":sample")
include(":api")