Files
Lawnchair/quickstep/src/com/android/quickstep/views/TaskMenuViewWithArrow.kt
T
Thales Lima 26f44911a6 add kotlin support for launcher
Bug: 193432925
Test: click on the app icon and check logcat
Change-Id: I2ca4d57105fe4e1b1dfc6c968a7c1bbd3cbd2151
2021-10-29 15:40:41 +00:00

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!")
}
}
}