Files
rr3-apk/decompiled/sources/androidx/core/app/PictureInPictureModeChangedInfo.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

39 lines
1.3 KiB
Java

package androidx.core.app;
import android.content.res.Configuration;
import androidx.annotation.RequiresApi;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class PictureInPictureModeChangedInfo {
private final boolean isInPictureInPictureMode;
@RequiresApi(26)
private Configuration newConfiguration;
public final boolean isInPictureInPictureMode() {
return this.isInPictureInPictureMode;
}
public PictureInPictureModeChangedInfo(boolean z) {
this.isInPictureInPictureMode = z;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
@RequiresApi(26)
public PictureInPictureModeChangedInfo(boolean z, Configuration newConfig) {
this(z);
Intrinsics.checkNotNullParameter(newConfig, "newConfig");
this.newConfiguration = newConfig;
}
@RequiresApi(26)
public final Configuration getNewConfig() {
Configuration configuration = this.newConfiguration;
if (configuration != null) {
return configuration;
}
throw new IllegalStateException("PictureInPictureModeChangedInfo must be constructed with the constructor that takes a Configuration to access the newConfig. Are you running on an API 26 or higher device that makes this information available?".toString());
}
}