Files
revanced-library/src/commonMain/kotlin/app/revanced/library/Utils.kt
2024-04-07 18:30:43 +02:00

19 lines
349 B
Kotlin

package app.revanced.library
/**
* Utils for the library.
*/
@Suppress("unused")
object Utils {
/**
* True if the environment is Android.
*/
val isAndroidEnvironment =
try {
Class.forName("android.app.Application")
true
} catch (e: ClassNotFoundException) {
false
}
}