AppRTCUtils.kt
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Copyright 2014 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
package io.livekit.android.sample.audio
import android.annotation.SuppressLint
import android.os.Build
import timber.log.Timber
/**
* AppRTCUtils provides helper functions for managing thread safety.
*/
object AppRTCUtils {
/** Helper method which throws an exception when an assertion has failed. */
fun assertIsTrue(condition: Boolean) {
if (!condition) {
throw AssertionError("Expected condition to be true")
}
}
/** Helper method for building a string of thread information. */
val threadInfo: String
get() = ("@[name=" + Thread.currentThread().name + ", id=" + Thread.currentThread().id
+ "]")
/** Information about the current build, taken from system properties. */
@SuppressLint("BinaryOperationInTimber")
fun logDeviceInfo(tag: String?) {
Timber.tag(tag).d(
"Android SDK: " + Build.VERSION.SDK_INT + ", "
+ "Release: " + Build.VERSION.RELEASE + ", "
+ "Brand: " + Build.BRAND + ", "
+ "Device: " + Build.DEVICE + ", "
+ "Id: " + Build.ID + ", "
+ "Hardware: " + Build.HARDWARE + ", "
+ "Manufacturer: " + Build.MANUFACTURER + ", "
+ "Model: " + Build.MODEL + ", "
+ "Product: " + Build.PRODUCT
)
}
}