32 lines
905 B
Java
32 lines
905 B
Java
package com.kofax.mobile.sdk.ah;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.AssetManager;
|
|
import android.hardware.SensorManager;
|
|
import android.location.LocationManager;
|
|
import android.net.ConnectivityManager;
|
|
import android.view.WindowManager;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class a {
|
|
public WindowManager q(Context context) {
|
|
return (WindowManager) context.getSystemService("window");
|
|
}
|
|
|
|
public AssetManager r(Context context) {
|
|
return context.getAssets();
|
|
}
|
|
|
|
public SensorManager s(Context context) {
|
|
return (SensorManager) context.getSystemService("sensor");
|
|
}
|
|
|
|
public LocationManager t(Context context) {
|
|
return (LocationManager) context.getSystemService("location");
|
|
}
|
|
|
|
public ConnectivityManager u(Context context) {
|
|
return (ConnectivityManager) context.getSystemService("connectivity");
|
|
}
|
|
}
|