FossifyGallery/settings.gradle.kts

20 lines
424 B
Text
Raw Normal View History

2023-08-17 14:46:52 +02:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
2023-09-07 09:37:18 +02:00
2023-12-14 14:44:06 +05:30
rootProject.name = "Gallery"
2023-09-06 18:15:48 +05:30
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2024-09-23 01:11:53 +05:30
include(":app")