mirror of
https://github.com/SimpleMobileTools/Simple-Launcher.git
synced 2025-06-05 21:59:15 +02:00
13 lines
374 B
Kotlin
13 lines
374 B
Kotlin
package com.simplemobiletools.launcher.activities
|
|
|
|
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
|
import com.simplemobiletools.launcher.R
|
|
|
|
open class SimpleActivity : BaseSimpleActivity() {
|
|
override fun getAppIconIDs() = arrayListOf(
|
|
R.mipmap.ic_launcher
|
|
)
|
|
|
|
override fun getAppLauncherName() = getString(R.string.app_launcher_name)
|
|
}
|