FastNotes app made in Kotlin

This commit is contained in:
Christopher Sanden
2026-02-28 23:11:51 +01:00
parent 31e8ece40d
commit 820451c7e1
56 changed files with 1499 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
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 = "FastNotes - Kotlin"
include(":app")