mirror of
https://github.com/greenart7c3/Amber.git
synced 2026-09-14 00:35:08 +00:00
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
20 lines
403 B
Kotlin
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")
|