Loading lib/src/main/java/foundation/e/lib/telemetry/Utils.ktdeleted 100644 → 0 +0 −19 Original line number Diff line number Diff line package foundation.e.lib.telemetry import android.annotation.SuppressLint object Utils { @SuppressLint("PrivateApi") fun getSystemProperty(key: String?): String? { var value: String? = null try { value = Class.forName("android.os.SystemProperties") .getMethod("get", String::class.java).invoke(null, key) as String } catch (e: Exception) { e.printStackTrace() } return value } } No newline at end of file Loading
lib/src/main/java/foundation/e/lib/telemetry/Utils.ktdeleted 100644 → 0 +0 −19 Original line number Diff line number Diff line package foundation.e.lib.telemetry import android.annotation.SuppressLint object Utils { @SuppressLint("PrivateApi") fun getSystemProperty(key: String?): String? { var value: String? = null try { value = Class.forName("android.os.SystemProperties") .getMethod("get", String::class.java).invoke(null, key) as String } catch (e: Exception) { e.printStackTrace() } return value } } No newline at end of file