updating some more basic generic code

This commit is contained in:
tibbi
2020-05-06 21:48:03 +02:00
parent 2886b2fb76
commit 5939f99669
10 changed files with 79 additions and 17 deletions

View File

@ -0,0 +1,12 @@
package com.simplemobiletools.dialer.activities
import com.simplemobiletools.commons.activities.BaseSimpleActivity
import com.simplemobiletools.dialer.R
open class SimpleActivity : BaseSimpleActivity() {
override fun getAppIconIDs() = arrayListOf(
R.mipmap.ic_launcher
)
override fun getAppLauncherName() = getString(R.string.app_launcher_name)
}