move all files in src/main/kotlin from src/main/java

This commit is contained in:
tibbi
2017-12-10 13:30:25 +01:00
parent a931960052
commit 0b7e652052
10 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package com.simplemobiletools.contacts
import android.app.Application
import com.simplemobiletools.commons.extensions.checkUseEnglish
class App : Application() {
override fun onCreate() {
super.onCreate()
checkUseEnglish()
}
}