com.sensorsdata.analytics.android.plugin.utils.TextUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-gradle-plugin2 Show documentation
Show all versions of android-gradle-plugin2 Show documentation
The official Android SDK Gradle Plugin for Sensors Analytics.
package com.sensorsdata.analytics.android.plugin.utils
object TextUtil {
fun isEmpty(str: CharSequence?): Boolean {
return str.isNullOrEmpty()
}
}