oncall-mobile-android/settings.gradle

25 lines
618 B
Groovy
Raw Permalink Normal View History

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" } // For StfalconImageViewer
}
}
rename: drop all ntfy heritage — package, log tags, brand, URLs (Tier 2) Full namespace + token rename across the entire fork. Greenfield, no backwards-compatibility aliasing. Package rename io.heckel.ntfy.* → com.centralcloud.oncall.* - 71 .kt + 3 .java + 2 .xml + 1 .gradle file contents rewritten - source tree moved under app/src/{main,play,fdroid}/java/com/centralcloud/oncall/ - namespace updated in app/build.gradle - Room schema dir app/schemas/io.heckel.ntfy.* removed (regenerates) Token sweep Ntfy/NTFY/ntfy → Oncall/ONCALL/oncall in all code/resource files, including Japanese translations. Affected: log-tag constants (NtfyApplication, NtfyMainActivity, ...), BroadcastService SEND_MESSAGE / CONNECTION_ALERT_* action names, translated string resources mentioning ntfy. URL hostnames ntfy.sh → oncall.hugo.dk docs.ntfy.sh → docs.oncall.hugo.dk ntfy.hugo.dk → oncall.hugo.dk ntfy.example.com, ntfy.ejemplo.es, ntfy.exemple.cat, ntfy.exemplo.com.br, ntfy.exemplo.pt → oncall.* equivalents (i18n example URLs) Deep-link scheme ntfy:// → oncall:// Backup format FILE_MAGIC "ntfy2586" → "oncall26" (greenfield, no existing backups to read) Verified: zero matches for /ntfy/i across the entire source tree, gradle files, resources, and AGENTS.md. DNS reminder: app_base_url default is now https://oncall.hugo.dk — point that DNS record at the same server as ntfy.hugo.dk (or update the default in BuildConfig if you prefer a different hostname). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 18:56:34 +02:00
rootProject.name='centralcloud-oncall-android'
include ':app'