- 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
23 lines
658 B
Java
23 lines
658 B
Java
package androidx.work.impl;
|
|
|
|
import android.content.Context;
|
|
import androidx.annotation.RequiresApi;
|
|
import java.io.File;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@RequiresApi(21)
|
|
/* loaded from: classes.dex */
|
|
public final class Api21Impl {
|
|
public static final Api21Impl INSTANCE = new Api21Impl();
|
|
|
|
private Api21Impl() {
|
|
}
|
|
|
|
public final File getNoBackupFilesDir(Context context) {
|
|
Intrinsics.checkNotNullParameter(context, "context");
|
|
File noBackupFilesDir = context.getNoBackupFilesDir();
|
|
Intrinsics.checkNotNullExpressionValue(noBackupFilesDir, "context.noBackupFilesDir");
|
|
return noBackupFilesDir;
|
|
}
|
|
}
|