// Buildsystem will put all our files into the package with the // same name as our crate's name is. package uniui_widget_label import android.annotation.SuppressLint import android.content.Context import android.widget.TextView @SuppressLint("AppCompatCustomView") class UniuiWidgetLabel(context: Context?) : TextView(context) { }