- 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
20 lines
502 B
Java
20 lines
502 B
Java
package androidx.browser.customtabs;
|
|
|
|
import android.os.Bundle;
|
|
import androidx.annotation.DoNotInline;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
@RequiresApi(33)
|
|
/* loaded from: classes.dex */
|
|
class Api33Impl {
|
|
private Api33Impl() {
|
|
}
|
|
|
|
@DoNotInline
|
|
public static <T> T getParcelable(@NonNull Bundle bundle, @Nullable String str, @NonNull Class<T> cls) {
|
|
return (T) bundle.getParcelable(str, cls);
|
|
}
|
|
}
|