convert App to kotlin

This commit is contained in:
tibbi
2016-11-13 23:34:57 +01:00
parent 83a1c707e0
commit 4fa58b11c9
2 changed files with 12 additions and 12 deletions

View File

@ -0,0 +1,12 @@
package com.simplemobiletools.notes
import android.app.Application
import com.facebook.stetho.Stetho
class App : Application() {
override fun onCreate() {
super.onCreate()
Stetho.initializeWithDefaults(this)
}
}