update commons to 3.20.5 with some new icons

This commit is contained in:
tibbi
2018-04-29 09:59:00 +02:00
parent 188eecc719
commit 6d7e28a3b6
12 changed files with 36 additions and 5 deletions

View File

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