package com.bitchat.android import android.app.Application /** * Main application class for bitchat Android */ class BitchatApplication : Application() { override fun onCreate() { super.onCreate() // Initialize any global services or configurations // For now, keep it simple } }