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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
package androidx.versionedparcelable;
import android.os.Bundle;
import android.os.Parcelable;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RestrictTo;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/* loaded from: classes.dex */
public class ParcelUtils {
private static final String INNER_BUNDLE_KEY = "a";
private ParcelUtils() {
}
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
public static Parcelable toParcelable(VersionedParcelable versionedParcelable) {
return new ParcelImpl(versionedParcelable);
}
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
public static <T extends VersionedParcelable> T fromParcelable(Parcelable parcelable) {
if (!(parcelable instanceof ParcelImpl)) {
throw new IllegalArgumentException("Invalid parcel");
}
return (T) ((ParcelImpl) parcelable).getVersionedParcel();
}
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
public static void toOutputStream(VersionedParcelable versionedParcelable, OutputStream outputStream) {
VersionedParcelStream versionedParcelStream = new VersionedParcelStream(null, outputStream);
versionedParcelStream.writeVersionedParcelable(versionedParcelable);
versionedParcelStream.closeField();
}
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
public static <T extends VersionedParcelable> T fromInputStream(InputStream inputStream) {
return (T) new VersionedParcelStream(inputStream, null).readVersionedParcelable();
}
public static void putVersionedParcelable(@NonNull Bundle bundle, @NonNull String str, @Nullable VersionedParcelable versionedParcelable) {
if (versionedParcelable == null) {
return;
}
Bundle bundle2 = new Bundle();
bundle2.putParcelable("a", toParcelable(versionedParcelable));
bundle.putParcelable(str, bundle2);
}
@Nullable
public static <T extends VersionedParcelable> T getVersionedParcelable(@NonNull Bundle bundle, @NonNull String str) {
try {
Bundle bundle2 = (Bundle) bundle.getParcelable(str);
if (bundle2 == null) {
return null;
}
bundle2.setClassLoader(ParcelUtils.class.getClassLoader());
return (T) fromParcelable(bundle2.getParcelable("a"));
} catch (RuntimeException unused) {
return null;
}
}
public static void putVersionedParcelableList(@NonNull Bundle bundle, @NonNull String str, @NonNull List<? extends VersionedParcelable> list) {
Bundle bundle2 = new Bundle();
ArrayList<? extends Parcelable> arrayList = new ArrayList<>();
Iterator<? extends VersionedParcelable> it = list.iterator();
while (it.hasNext()) {
arrayList.add(toParcelable(it.next()));
}
bundle2.putParcelableArrayList("a", arrayList);
bundle.putParcelable(str, bundle2);
}
@Nullable
public static <T extends VersionedParcelable> List<T> getVersionedParcelableList(Bundle bundle, String str) {
ArrayList arrayList = new ArrayList();
try {
Bundle bundle2 = (Bundle) bundle.getParcelable(str);
bundle2.setClassLoader(ParcelUtils.class.getClassLoader());
Iterator it = bundle2.getParcelableArrayList("a").iterator();
while (it.hasNext()) {
arrayList.add(fromParcelable((Parcelable) it.next()));
}
return arrayList;
} catch (RuntimeException unused) {
return null;
}
}
}