mirror of
https://github.com/FossifyOrg/Camera.git
synced 2026-07-30 17:27:29 -04:00
* feat: add max screen brightness option * build: update jitpack url * refactor: rename shutter settings section to camera settings * docs: update changelog Refs: https://github.com/FossifyOrg/Camera/issues/234
18 lines
368 B
Kotlin
18 lines
368 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { setUrl("https://www.jitpack.io") }
|
|
mavenLocal()
|
|
}
|
|
}
|
|
include(":app")
|