docs: complete 100% kdoc coverage and update app branding
All checks were successful
Update Wiki Documentation / generate-docs (push) Successful in 2m12s

This commit is contained in:
Krzysztof Cieślik
2026-06-14 07:23:17 +02:00
parent 231ec0cf92
commit c122e0392a
32 changed files with 435 additions and 89 deletions

View File

@@ -4,6 +4,11 @@ import android.content.Context
import android.os.Bundle
import com.example.retroha.i18n.LocaleHelper
/**
* Base activity class that provides automatic localization support.
* All activities in the application should extend this class to ensure
* dynamic language changes are applied correctly.
*/
abstract class BaseActivity : Activity() {
override fun attachBaseContext(newBase: Context) {
super.attachBaseContext(LocaleHelper.setLocale(newBase))