package androidx.core.os;

import android.os.PersistableBundle;
import androidx.annotation.DoNotInline;
import androidx.annotation.RequiresApi;

/* JADX INFO: loaded from: classes.dex */
@RequiresApi(22)
final class PersistableBundleApi22ImplKt {
    public static final PersistableBundleApi22ImplKt INSTANCE = new PersistableBundleApi22ImplKt();

    private PersistableBundleApi22ImplKt() {
    }

    @DoNotInline
    public static final void putBoolean(PersistableBundle persistableBundle, String str, boolean z2) {
        kotlin.jvm.internal.l.e(persistableBundle, "persistableBundle");
        persistableBundle.putBoolean(str, z2);
    }

    @DoNotInline
    public static final void putBooleanArray(PersistableBundle persistableBundle, String str, boolean[] value) {
        kotlin.jvm.internal.l.e(persistableBundle, "persistableBundle");
        kotlin.jvm.internal.l.e(value, "value");
        persistableBundle.putBooleanArray(str, value);
    }
}
