mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-07-25 16:25:22 +00:00
17 lines
330 B
Kotlin
17 lines
330 B
Kotlin
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
|
|
}
|
|
}
|