Files
OmniCards/mobile/src/main/java/ru/omni_devel/cards/Config.kt
T
2026-06-22 22:33:11 +03:00

16 lines
351 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package ru.omni_devel.cards
const val REPO_BASE_URL = "https://gitea.omni-devel.ru/omni/OmniCardsRepo/raw/branch/main"
const val TEMPLATES_REPO_FILE = "templates.json"
const val ICONS_REPO_FILE = "icons.json"
const val ICONS_REPO_FOLDER = "icons"
val SEARCH_REPLACE_SYMBOLS = mapOf(
" " to "",
"-" to "",
"_" to "",
"ё" to "е"
)