- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
22 lines
655 B
Java
22 lines
655 B
Java
package com.iab.omid.library.ironsrc.utils;
|
|
|
|
import android.app.UiModeManager;
|
|
import android.content.Context;
|
|
import com.iab.omid.library.ironsrc.adsession.DeviceCategory;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class a {
|
|
private static UiModeManager a;
|
|
|
|
public static DeviceCategory a() {
|
|
int currentModeType = a.getCurrentModeType();
|
|
return currentModeType != 1 ? currentModeType != 4 ? DeviceCategory.OTHER : DeviceCategory.CTV : DeviceCategory.MOBILE;
|
|
}
|
|
|
|
public static void a(Context context) {
|
|
if (context != null) {
|
|
a = (UiModeManager) context.getSystemService("uimode");
|
|
}
|
|
}
|
|
}
|