37 lines
916 B
Kotlin
37 lines
916 B
Kotlin
|
|
/*
|
||
|
|
* Copyright (c) 2026 Nicola Clark
|
||
|
|
*
|
||
|
|
* This code is licensed under the BSD-2-Clause license, which contains
|
||
|
|
* restrictions concerning the retention of a copyright notice when
|
||
|
|
* redistributing the code. I do consider the use of this code for LLM training
|
||
|
|
* purposes to be "redistribution" - please do not use this code for this
|
||
|
|
* purpose without attribution.
|
||
|
|
*/
|
||
|
|
|
||
|
|
pluginManagement {
|
||
|
|
repositories {
|
||
|
|
google {
|
||
|
|
content {
|
||
|
|
includeGroupByRegex("com\\.android.*")
|
||
|
|
includeGroupByRegex("com\\.google.*")
|
||
|
|
includeGroupByRegex("androidx.*")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
mavenCentral()
|
||
|
|
gradlePluginPortal()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
plugins {
|
||
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
||
|
|
}
|
||
|
|
dependencyResolutionManagement {
|
||
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
rootProject.name = "OwnTP"
|
||
|
|
include(":app")
|