Files
Amber/settings.gradle.kts
Claude e770811bf5 Convert Gradle build scripts from Groovy to Kotlin DSL
Migrates settings.gradle, root build.gradle, and app/build.gradle to
their .kts equivalents. Updates the F-Droid CI sed pattern and the
CLAUDE.md reference to match the new file names.

https://claude.ai/code/session_01VFNWcRfGTUpgqzUBpU9wFu
2026-05-21 17:35:57 +00:00

20 lines
403 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
rootProject.name = "Nostr Signer"
include(":app")