20 lines
433 B
Java
20 lines
433 B
Java
package D;
|
|
|
|
import android.content.Context;
|
|
import java.io.File;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class c {
|
|
public static Context a(Context context) {
|
|
return context.createDeviceProtectedStorageContext();
|
|
}
|
|
|
|
public static File b(Context context) {
|
|
return context.getDataDir();
|
|
}
|
|
|
|
public static boolean c(Context context) {
|
|
return context.isDeviceProtectedStorage();
|
|
}
|
|
}
|