mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-26 13:08:46 +02:00
13 lines
239 B
Kotlin
13 lines
239 B
Kotlin
package com.simplemobiletools.notes
|
|
|
|
import android.app.Application
|
|
|
|
import com.facebook.stetho.Stetho
|
|
|
|
class App : Application() {
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
Stetho.initializeWithDefaults(this)
|
|
}
|
|
}
|