blob: cb9046b1c7dd06e22d6cc4c011b0380bfa85a660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@file:Suppress("unused")
package it.android
import android.content.Context
import android.util.SparseIntArray
import android.view.View
/**
* This class is specific to android and uses android classes like:
* [Context], [SparseIntArray] or [View]
*/
class AndroidSpecificClass {
fun sparseIntArray() = SparseIntArray()
fun createView(context: Context): View = View(context)
}
|