16 lines
351 B
Kotlin
16 lines
351 B
Kotlin
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 "е"
|
||
)
|