26f44911a6
Bug: 193432925 Test: click on the app icon and check logcat Change-Id: I2ca4d57105fe4e1b1dfc6c968a7c1bbd3cbd2151
14 lines
275 B
Kotlin
14 lines
275 B
Kotlin
package com.android.quickstep.views
|
|
|
|
import android.util.Log
|
|
|
|
// TODO(http://b/193432925)
|
|
class TaskMenuViewWithArrow {
|
|
companion object {
|
|
const val TAG = "TaskMenuViewWithArrow"
|
|
|
|
fun logSomething() {
|
|
Log.d(TAG, "It worked!")
|
|
}
|
|
}
|
|
} |