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,68 @@
package com.facebook.bolts;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Collections;
import java.util.List;
import kotlin.collections.CollectionsKt__CollectionsKt;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AggregateException extends Exception {
public static final Companion Companion = new Companion(null);
private static final long serialVersionUID = 1;
private final List<Throwable> innerThrowables;
public AggregateException(String str, List<? extends Throwable> list) {
super(str, (list == null || !(list.isEmpty() ^ true)) ? null : list.get(0));
List<Throwable> unmodifiableList = Collections.unmodifiableList(list == null ? CollectionsKt__CollectionsKt.emptyList() : list);
Intrinsics.checkNotNullExpressionValue(unmodifiableList, "unmodifiableList(innerThrowables ?: emptyList())");
this.innerThrowables = unmodifiableList;
}
@Override // java.lang.Throwable
public void printStackTrace(PrintStream err) {
Intrinsics.checkNotNullParameter(err, "err");
super.printStackTrace(err);
int i = -1;
for (Throwable th : this.innerThrowables) {
err.append("\n");
err.append(" Inner throwable #");
i++;
err.append((CharSequence) String.valueOf(i));
err.append(": ");
if (th != null) {
th.printStackTrace(err);
}
err.append("\n");
}
}
@Override // java.lang.Throwable
public void printStackTrace(PrintWriter err) {
Intrinsics.checkNotNullParameter(err, "err");
super.printStackTrace(err);
int i = -1;
for (Throwable th : this.innerThrowables) {
err.append("\n");
err.append(" Inner throwable #");
i++;
err.append((CharSequence) String.valueOf(i));
err.append(": ");
if (th != null) {
th.printStackTrace(err);
}
err.append("\n");
}
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
}
}

View File

@@ -0,0 +1,67 @@
package com.facebook.bolts;
import android.os.Handler;
import android.os.Looper;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AndroidExecutors {
private static final int CORE_POOL_SIZE;
private static final int CPU_COUNT;
public static final Companion Companion = new Companion(null);
private static final AndroidExecutors INSTANCE = new AndroidExecutors();
private static final long KEEP_ALIVE_TIME = 1;
private static final int MAX_POOL_SIZE;
private final Executor uiThread = new UIThreadExecutor();
public static final ExecutorService newCachedThreadPool() {
return Companion.newCachedThreadPool();
}
public static final Executor uiThread() {
return Companion.uiThread();
}
private AndroidExecutors() {
}
public static final class UIThreadExecutor implements Executor {
@Override // java.util.concurrent.Executor
public void execute(Runnable command) {
Intrinsics.checkNotNullParameter(command, "command");
new Handler(Looper.getMainLooper()).post(command);
}
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final ExecutorService newCachedThreadPool() {
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(AndroidExecutors.CORE_POOL_SIZE, AndroidExecutors.MAX_POOL_SIZE, 1L, TimeUnit.SECONDS, new LinkedBlockingQueue());
threadPoolExecutor.allowCoreThreadTimeOut(true);
return threadPoolExecutor;
}
public final Executor uiThread() {
return AndroidExecutors.INSTANCE.uiThread;
}
}
static {
int availableProcessors = Runtime.getRuntime().availableProcessors();
CPU_COUNT = availableProcessors;
CORE_POOL_SIZE = availableProcessors + 1;
MAX_POOL_SIZE = (availableProcessors * 2) + 1;
}
}

View File

@@ -0,0 +1,70 @@
package com.facebook.bolts;
import android.net.Uri;
import java.util.Collections;
import java.util.List;
import kotlin.collections.CollectionsKt__CollectionsKt;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AppLink {
private final Uri sourceUrl;
private final List<Target> targets;
private final Uri webUrl;
public final Uri getSourceUrl() {
return this.sourceUrl;
}
public final Uri getWebUrl() {
return this.webUrl;
}
public AppLink(Uri sourceUrl, List<Target> list, Uri webUrl) {
Intrinsics.checkNotNullParameter(sourceUrl, "sourceUrl");
Intrinsics.checkNotNullParameter(webUrl, "webUrl");
this.sourceUrl = sourceUrl;
this.webUrl = webUrl;
this.targets = list == null ? CollectionsKt__CollectionsKt.emptyList() : list;
}
public static final class Target {
private final String appName;
private final String className;
private final String packageName;
private final Uri url;
public final String getAppName() {
return this.appName;
}
public final String getClassName() {
return this.className;
}
public final String getPackageName() {
return this.packageName;
}
public final Uri getUrl() {
return this.url;
}
public Target(String packageName, String className, Uri url, String appName) {
Intrinsics.checkNotNullParameter(packageName, "packageName");
Intrinsics.checkNotNullParameter(className, "className");
Intrinsics.checkNotNullParameter(url, "url");
Intrinsics.checkNotNullParameter(appName, "appName");
this.packageName = packageName;
this.className = className;
this.url = url;
this.appName = appName;
}
}
public final List<Target> getTargets() {
List<Target> unmodifiableList = Collections.unmodifiableList(this.targets);
Intrinsics.checkNotNullExpressionValue(unmodifiableList, "unmodifiableList(field)");
return unmodifiableList;
}
}

View File

@@ -0,0 +1,8 @@
package com.facebook.bolts;
import android.net.Uri;
/* loaded from: classes2.dex */
public interface AppLinkResolver {
Task<AppLink> getAppLinkFromUrlInBackground(Uri uri);
}

View File

@@ -0,0 +1,29 @@
package com.facebook.bolts;
import android.content.Intent;
import android.os.Bundle;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AppLinks {
public static final AppLinks INSTANCE = new AppLinks();
public static final String KEY_NAME_APPLINK_DATA = "al_applink_data";
public static final String KEY_NAME_EXTRAS = "extras";
private AppLinks() {
}
public static final Bundle getAppLinkData(Intent intent) {
Intrinsics.checkNotNullParameter(intent, "intent");
return intent.getBundleExtra(KEY_NAME_APPLINK_DATA);
}
public static final Bundle getAppLinkExtras(Intent intent) {
Intrinsics.checkNotNullParameter(intent, "intent");
Bundle appLinkData = getAppLinkData(intent);
if (appLinkData == null) {
return null;
}
return appLinkData.getBundle("extras");
}
}

View File

@@ -0,0 +1,129 @@
package com.facebook.bolts;
import java.util.Locale;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import kotlin.text.StringsKt__StringsKt;
/* loaded from: classes2.dex */
public final class BoltsExecutors {
public static final Companion Companion = new Companion(null);
private static final BoltsExecutors INSTANCE = new BoltsExecutors();
private final ExecutorService background;
private final Executor immediate;
private final ScheduledExecutorService scheduled;
public static final ExecutorService background() {
return Companion.background();
}
private BoltsExecutors() {
ExecutorService newCachedThreadPool;
if (Companion.isAndroidRuntime()) {
newCachedThreadPool = AndroidExecutors.Companion.newCachedThreadPool();
} else {
newCachedThreadPool = Executors.newCachedThreadPool();
Intrinsics.checkNotNullExpressionValue(newCachedThreadPool, "newCachedThreadPool()");
}
this.background = newCachedThreadPool;
ScheduledExecutorService newSingleThreadScheduledExecutor = Executors.newSingleThreadScheduledExecutor();
Intrinsics.checkNotNullExpressionValue(newSingleThreadScheduledExecutor, "newSingleThreadScheduledExecutor()");
this.scheduled = newSingleThreadScheduledExecutor;
this.immediate = new ImmediateExecutor();
}
public static final class ImmediateExecutor implements Executor {
public static final Companion Companion = new Companion(null);
private static final int MAX_DEPTH = 15;
private final ThreadLocal<Integer> executionDepth = new ThreadLocal<>();
private final int incrementDepth() {
Integer num = this.executionDepth.get();
if (num == null) {
num = 0;
}
int intValue = num.intValue() + 1;
this.executionDepth.set(Integer.valueOf(intValue));
return intValue;
}
private final int decrementDepth() {
Integer num = this.executionDepth.get();
if (num == null) {
num = 0;
}
int intValue = num.intValue() - 1;
if (intValue == 0) {
this.executionDepth.remove();
} else {
this.executionDepth.set(Integer.valueOf(intValue));
}
return intValue;
}
@Override // java.util.concurrent.Executor
public void execute(Runnable command) {
Intrinsics.checkNotNullParameter(command, "command");
try {
if (incrementDepth() <= 15) {
command.run();
} else {
BoltsExecutors.Companion.background().execute(command);
}
decrementDepth();
} catch (Throwable th) {
decrementDepth();
throw th;
}
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
}
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
/* JADX INFO: Access modifiers changed from: private */
public final boolean isAndroidRuntime() {
boolean contains$default;
String property = System.getProperty("java.runtime.name");
if (property == null) {
return false;
}
Locale US = Locale.US;
Intrinsics.checkNotNullExpressionValue(US, "US");
String lowerCase = property.toLowerCase(US);
Intrinsics.checkNotNullExpressionValue(lowerCase, "(this as java.lang.String).toLowerCase(locale)");
contains$default = StringsKt__StringsKt.contains$default(lowerCase, "android", false, 2, null);
return contains$default;
}
public final ExecutorService background() {
return BoltsExecutors.INSTANCE.background;
}
public final ScheduledExecutorService scheduled$facebook_bolts_release() {
return BoltsExecutors.INSTANCE.scheduled;
}
public final Executor immediate$facebook_bolts_release() {
return BoltsExecutors.INSTANCE.immediate;
}
}
}

View File

@@ -0,0 +1,8 @@
package com.facebook.bolts;
/* loaded from: classes2.dex */
public final class BuildConfig {
public static final String BUILD_TYPE = "release";
public static final boolean DEBUG = false;
public static final String LIBRARY_PACKAGE_NAME = "com.facebook.bolts";
}

View File

@@ -0,0 +1,36 @@
package com.facebook.bolts;
import java.util.Arrays;
import java.util.Locale;
import java.util.concurrent.CancellationException;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.StringCompanionObject;
/* loaded from: classes2.dex */
public final class CancellationToken {
private final CancellationTokenSource tokenSource;
public CancellationToken(CancellationTokenSource tokenSource) {
Intrinsics.checkNotNullParameter(tokenSource, "tokenSource");
this.tokenSource = tokenSource;
}
public final boolean isCancellationRequested() {
return this.tokenSource.isCancellationRequested();
}
public final CancellationTokenRegistration register(Runnable runnable) {
return this.tokenSource.register$facebook_bolts_release(runnable);
}
public final void throwIfCancellationRequested() throws CancellationException {
this.tokenSource.throwIfCancellationRequested$facebook_bolts_release();
}
public String toString() {
StringCompanionObject stringCompanionObject = StringCompanionObject.INSTANCE;
String format = String.format(Locale.US, "%s@%s[cancellationRequested=%s]", Arrays.copyOf(new Object[]{CancellationToken.class.getName(), Integer.toHexString(hashCode()), Boolean.toString(this.tokenSource.isCancellationRequested())}, 3));
Intrinsics.checkNotNullExpressionValue(format, "java.lang.String.format(locale, format, *args)");
return format;
}
}

View File

@@ -0,0 +1,53 @@
package com.facebook.bolts;
import java.io.Closeable;
import kotlin.Unit;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class CancellationTokenRegistration implements Closeable {
private Runnable action;
private boolean closed;
private CancellationTokenSource tokenSource;
public CancellationTokenRegistration(CancellationTokenSource tokenSource, Runnable runnable) {
Intrinsics.checkNotNullParameter(tokenSource, "tokenSource");
this.action = runnable;
this.tokenSource = tokenSource;
}
@Override // java.io.Closeable, java.lang.AutoCloseable
public void close() {
synchronized (this) {
if (this.closed) {
return;
}
this.closed = true;
CancellationTokenSource cancellationTokenSource = this.tokenSource;
if (cancellationTokenSource != null) {
cancellationTokenSource.unregister$facebook_bolts_release(this);
}
this.tokenSource = null;
this.action = null;
Unit unit = Unit.INSTANCE;
}
}
public final void runAction$facebook_bolts_release() {
synchronized (this) {
throwIfClosed();
Runnable runnable = this.action;
if (runnable != null) {
runnable.run();
}
close();
Unit unit = Unit.INSTANCE;
}
}
private final void throwIfClosed() {
if (!(!this.closed)) {
throw new IllegalStateException("Object already closed".toString());
}
}
}

View File

@@ -0,0 +1,188 @@
package com.facebook.bolts;
import java.io.Closeable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import kotlin.Unit;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.StringCompanionObject;
/* loaded from: classes2.dex */
public final class CancellationTokenSource implements Closeable {
private boolean cancellationRequested;
private boolean closed;
private ScheduledFuture<?> scheduledCancellation;
private final Object lock = new Object();
private final List<CancellationTokenRegistration> registrations = new ArrayList();
private final ScheduledExecutorService executor = BoltsExecutors.Companion.scheduled$facebook_bolts_release();
public final boolean isCancellationRequested() {
boolean z;
synchronized (this.lock) {
throwIfClosed();
z = this.cancellationRequested;
}
return z;
}
public final CancellationToken getToken() {
CancellationToken cancellationToken;
synchronized (this.lock) {
throwIfClosed();
cancellationToken = new CancellationToken(this);
}
return cancellationToken;
}
public final void cancel() {
synchronized (this.lock) {
throwIfClosed();
if (this.cancellationRequested) {
return;
}
cancelScheduledCancellation();
this.cancellationRequested = true;
ArrayList arrayList = new ArrayList(this.registrations);
Unit unit = Unit.INSTANCE;
notifyListeners(arrayList);
}
}
public final void cancelAfter(long j) {
cancelAfter(j, TimeUnit.MILLISECONDS);
}
private final void cancelAfter(long j, TimeUnit timeUnit) {
if (!(j >= -1)) {
throw new IllegalArgumentException("Delay must be >= -1".toString());
}
if (j == 0) {
cancel();
return;
}
synchronized (this.lock) {
try {
if (this.cancellationRequested) {
return;
}
cancelScheduledCancellation();
if (j != -1) {
this.scheduledCancellation = this.executor.schedule(new Runnable() { // from class: com.facebook.bolts.CancellationTokenSource$$ExternalSyntheticLambda0
@Override // java.lang.Runnable
public final void run() {
CancellationTokenSource.m525cancelAfter$lambda6$lambda5(CancellationTokenSource.this);
}
}, j, timeUnit);
}
Unit unit = Unit.INSTANCE;
} catch (Throwable th) {
throw th;
}
}
}
/* JADX INFO: Access modifiers changed from: private */
/* renamed from: cancelAfter$lambda-6$lambda-5, reason: not valid java name */
public static final void m525cancelAfter$lambda6$lambda5(CancellationTokenSource this$0) {
Intrinsics.checkNotNullParameter(this$0, "this$0");
synchronized (this$0.lock) {
this$0.scheduledCancellation = null;
Unit unit = Unit.INSTANCE;
}
this$0.cancel();
}
@Override // java.io.Closeable, java.lang.AutoCloseable
public void close() {
synchronized (this.lock) {
try {
if (this.closed) {
return;
}
cancelScheduledCancellation();
Iterator<CancellationTokenRegistration> it = this.registrations.iterator();
while (it.hasNext()) {
it.next().close();
}
this.registrations.clear();
this.closed = true;
Unit unit = Unit.INSTANCE;
} catch (Throwable th) {
throw th;
}
}
}
public final CancellationTokenRegistration register$facebook_bolts_release(Runnable runnable) {
CancellationTokenRegistration cancellationTokenRegistration;
synchronized (this.lock) {
try {
throwIfClosed();
cancellationTokenRegistration = new CancellationTokenRegistration(this, runnable);
if (this.cancellationRequested) {
cancellationTokenRegistration.runAction$facebook_bolts_release();
Unit unit = Unit.INSTANCE;
} else {
this.registrations.add(cancellationTokenRegistration);
}
} catch (Throwable th) {
throw th;
}
}
return cancellationTokenRegistration;
}
public final void throwIfCancellationRequested$facebook_bolts_release() throws CancellationException {
synchronized (this.lock) {
throwIfClosed();
if (this.cancellationRequested) {
throw new CancellationException();
}
Unit unit = Unit.INSTANCE;
}
}
public final void unregister$facebook_bolts_release(CancellationTokenRegistration registration) {
Intrinsics.checkNotNullParameter(registration, "registration");
synchronized (this.lock) {
throwIfClosed();
this.registrations.remove(registration);
}
}
private final void notifyListeners(List<CancellationTokenRegistration> list) {
Iterator<CancellationTokenRegistration> it = list.iterator();
while (it.hasNext()) {
it.next().runAction$facebook_bolts_release();
}
}
public String toString() {
StringCompanionObject stringCompanionObject = StringCompanionObject.INSTANCE;
String format = String.format(Locale.US, "%s@%s[cancellationRequested=%s]", Arrays.copyOf(new Object[]{CancellationTokenSource.class.getName(), Integer.toHexString(hashCode()), Boolean.toString(isCancellationRequested())}, 3));
Intrinsics.checkNotNullExpressionValue(format, "java.lang.String.format(locale, format, *args)");
return format;
}
private final void throwIfClosed() {
if (!(!this.closed)) {
throw new IllegalStateException("Object already closed".toString());
}
}
private final void cancelScheduledCancellation() {
ScheduledFuture<?> scheduledFuture = this.scheduledCancellation;
if (scheduledFuture == null) {
return;
}
scheduledFuture.cancel(true);
this.scheduledCancellation = null;
}
}

View File

@@ -0,0 +1,6 @@
package com.facebook.bolts;
/* loaded from: classes2.dex */
public interface Continuation<TTaskResult, TContinuationResult> {
TContinuationResult then(Task<TTaskResult> task) throws Exception;
}

View File

@@ -0,0 +1,12 @@
package com.facebook.bolts;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class ExecutorException extends RuntimeException {
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public ExecutorException(Exception e) {
super("An exception was thrown by an Executor", e);
Intrinsics.checkNotNullParameter(e, "e");
}
}

View File

@@ -0,0 +1,243 @@
package com.facebook.bolts;
/* loaded from: classes2.dex */
public final class R {
public static final class attr {
public static int alpha = 0x7f040055;
public static int font = 0x7f0400d8;
public static int fontProviderAuthority = 0x7f0400da;
public static int fontProviderCerts = 0x7f0400db;
public static int fontProviderFetchStrategy = 0x7f0400dd;
public static int fontProviderFetchTimeout = 0x7f0400de;
public static int fontProviderPackage = 0x7f0400df;
public static int fontProviderQuery = 0x7f0400e0;
public static int fontStyle = 0x7f0400e2;
public static int fontVariationSettings = 0x7f0400e3;
public static int fontWeight = 0x7f0400e4;
public static int ttcIndex = 0x7f04019c;
private attr() {
}
}
public static final class color {
public static int androidx_core_ripple_material_light = 0x7f060025;
public static int androidx_core_secondary_text_default_material_light = 0x7f060026;
public static int notification_action_color_filter = 0x7f0600e7;
public static int notification_icon_bg_color = 0x7f0600e8;
private color() {
}
}
public static final class dimen {
public static int compat_button_inset_horizontal_material = 0x7f070095;
public static int compat_button_inset_vertical_material = 0x7f070096;
public static int compat_button_padding_horizontal_material = 0x7f070097;
public static int compat_button_padding_vertical_material = 0x7f070098;
public static int compat_control_corner_material = 0x7f070099;
public static int compat_notification_large_icon_max_height = 0x7f07009a;
public static int compat_notification_large_icon_max_width = 0x7f07009b;
public static int notification_action_icon_size = 0x7f070105;
public static int notification_action_text_size = 0x7f070106;
public static int notification_big_circle_margin = 0x7f070107;
public static int notification_content_margin_start = 0x7f070108;
public static int notification_large_icon_height = 0x7f070109;
public static int notification_large_icon_width = 0x7f07010a;
public static int notification_main_column_padding_top = 0x7f07010b;
public static int notification_media_narrow_margin = 0x7f07010c;
public static int notification_right_icon_size = 0x7f07010d;
public static int notification_right_side_padding_top = 0x7f07010e;
public static int notification_small_icon_background_padding = 0x7f07010f;
public static int notification_small_icon_size_as_large = 0x7f070110;
public static int notification_subtext_size = 0x7f070111;
public static int notification_top_pad = 0x7f070112;
public static int notification_top_pad_large_text = 0x7f070113;
private dimen() {
}
}
public static final class drawable {
public static int notification_action_background = 0x7f080241;
public static int notification_bg = 0x7f080242;
public static int notification_bg_low = 0x7f080243;
public static int notification_bg_low_normal = 0x7f080244;
public static int notification_bg_low_pressed = 0x7f080245;
public static int notification_bg_normal = 0x7f080246;
public static int notification_bg_normal_pressed = 0x7f080247;
public static int notification_icon_background = 0x7f080248;
public static int notification_template_icon_bg = 0x7f08024a;
public static int notification_template_icon_low_bg = 0x7f08024b;
public static int notification_tile_bg = 0x7f08024c;
public static int notify_panel_notification_icon_bg = 0x7f08024d;
private drawable() {
}
}
public static final class id {
public static int accessibility_action_clickable_span = 0x7f0a0009;
public static int accessibility_custom_action_0 = 0x7f0a000a;
public static int accessibility_custom_action_1 = 0x7f0a000b;
public static int accessibility_custom_action_10 = 0x7f0a000c;
public static int accessibility_custom_action_11 = 0x7f0a000d;
public static int accessibility_custom_action_12 = 0x7f0a000e;
public static int accessibility_custom_action_13 = 0x7f0a000f;
public static int accessibility_custom_action_14 = 0x7f0a0010;
public static int accessibility_custom_action_15 = 0x7f0a0011;
public static int accessibility_custom_action_16 = 0x7f0a0012;
public static int accessibility_custom_action_17 = 0x7f0a0013;
public static int accessibility_custom_action_18 = 0x7f0a0014;
public static int accessibility_custom_action_19 = 0x7f0a0015;
public static int accessibility_custom_action_2 = 0x7f0a0016;
public static int accessibility_custom_action_20 = 0x7f0a0017;
public static int accessibility_custom_action_21 = 0x7f0a0018;
public static int accessibility_custom_action_22 = 0x7f0a0019;
public static int accessibility_custom_action_23 = 0x7f0a001a;
public static int accessibility_custom_action_24 = 0x7f0a001b;
public static int accessibility_custom_action_25 = 0x7f0a001c;
public static int accessibility_custom_action_26 = 0x7f0a001d;
public static int accessibility_custom_action_27 = 0x7f0a001e;
public static int accessibility_custom_action_28 = 0x7f0a001f;
public static int accessibility_custom_action_29 = 0x7f0a0020;
public static int accessibility_custom_action_3 = 0x7f0a0021;
public static int accessibility_custom_action_30 = 0x7f0a0022;
public static int accessibility_custom_action_31 = 0x7f0a0023;
public static int accessibility_custom_action_4 = 0x7f0a0024;
public static int accessibility_custom_action_5 = 0x7f0a0025;
public static int accessibility_custom_action_6 = 0x7f0a0026;
public static int accessibility_custom_action_7 = 0x7f0a0027;
public static int accessibility_custom_action_8 = 0x7f0a0028;
public static int accessibility_custom_action_9 = 0x7f0a0029;
public static int action_container = 0x7f0a0032;
public static int action_divider = 0x7f0a0034;
public static int action_image = 0x7f0a0035;
public static int action_text = 0x7f0a003c;
public static int actions = 0x7f0a003d;
public static int async = 0x7f0a0088;
public static int blocking = 0x7f0a0091;
public static int chronometer = 0x7f0a00a6;
public static int dialog_button = 0x7f0a00c1;
public static int forever = 0x7f0a0107;
public static int icon = 0x7f0a014a;
public static int icon_group = 0x7f0a014b;
public static int info = 0x7f0a0151;
public static int italic = 0x7f0a0156;
public static int line1 = 0x7f0a015d;
public static int line3 = 0x7f0a015e;
public static int normal = 0x7f0a022f;
public static int notification_background = 0x7f0a0230;
public static int notification_main_column = 0x7f0a0231;
public static int notification_main_column_container = 0x7f0a0232;
public static int right_icon = 0x7f0a0248;
public static int right_side = 0x7f0a0249;
public static int tag_accessibility_actions = 0x7f0a0270;
public static int tag_accessibility_clickable_spans = 0x7f0a0271;
public static int tag_accessibility_heading = 0x7f0a0272;
public static int tag_accessibility_pane_title = 0x7f0a0273;
public static int tag_screen_reader_focusable = 0x7f0a0277;
public static int tag_transition_group = 0x7f0a0279;
public static int tag_unhandled_key_event_manager = 0x7f0a027a;
public static int tag_unhandled_key_listeners = 0x7f0a027b;
public static int text = 0x7f0a027d;
public static int text2 = 0x7f0a027e;
public static int time = 0x7f0a0283;
public static int title = 0x7f0a0284;
private id() {
}
}
public static final class integer {
public static int status_bar_notification_info_maxnum = 0x7f0b0014;
private integer() {
}
}
public static final class layout {
public static int custom_dialog = 0x7f0d0033;
public static int notification_action = 0x7f0d009f;
public static int notification_action_tombstone = 0x7f0d00a0;
public static int notification_template_custom_big = 0x7f0d00a7;
public static int notification_template_icon_group = 0x7f0d00a8;
public static int notification_template_part_chronometer = 0x7f0d00ac;
public static int notification_template_part_time = 0x7f0d00ad;
private layout() {
}
}
public static final class string {
public static int status_bar_notification_info_overflow = 0x7f120187;
private string() {
}
}
public static final class style {
public static int TextAppearance_Compat_Notification = 0x7f130147;
public static int TextAppearance_Compat_Notification_Info = 0x7f130148;
public static int TextAppearance_Compat_Notification_Line2 = 0x7f13014a;
public static int TextAppearance_Compat_Notification_Time = 0x7f13014d;
public static int TextAppearance_Compat_Notification_Title = 0x7f13014f;
public static int Widget_Compat_NotificationActionContainer = 0x7f1301c1;
public static int Widget_Compat_NotificationActionText = 0x7f1301c2;
private style() {
}
}
public static final class styleable {
public static int ColorStateListItem_alpha = 0x00000003;
public static int ColorStateListItem_android_alpha = 0x00000001;
public static int ColorStateListItem_android_color = 0x00000000;
public static int ColorStateListItem_android_lStar = 0x00000002;
public static int ColorStateListItem_lStar = 0x00000004;
public static int FontFamilyFont_android_font = 0x00000000;
public static int FontFamilyFont_android_fontStyle = 0x00000002;
public static int FontFamilyFont_android_fontVariationSettings = 0x00000004;
public static int FontFamilyFont_android_fontWeight = 0x00000001;
public static int FontFamilyFont_android_ttcIndex = 0x00000003;
public static int FontFamilyFont_font = 0x00000005;
public static int FontFamilyFont_fontStyle = 0x00000006;
public static int FontFamilyFont_fontVariationSettings = 0x00000007;
public static int FontFamilyFont_fontWeight = 0x00000008;
public static int FontFamilyFont_ttcIndex = 0x00000009;
public static int FontFamily_fontProviderAuthority = 0x00000000;
public static int FontFamily_fontProviderCerts = 0x00000001;
public static int FontFamily_fontProviderFallbackQuery = 0x00000002;
public static int FontFamily_fontProviderFetchStrategy = 0x00000003;
public static int FontFamily_fontProviderFetchTimeout = 0x00000004;
public static int FontFamily_fontProviderPackage = 0x00000005;
public static int FontFamily_fontProviderQuery = 0x00000006;
public static int FontFamily_fontProviderSystemFontFamily = 0x00000007;
public static int GradientColorItem_android_color = 0x00000000;
public static int GradientColorItem_android_offset = 0x00000001;
public static int GradientColor_android_centerColor = 0x00000007;
public static int GradientColor_android_centerX = 0x00000003;
public static int GradientColor_android_centerY = 0x00000004;
public static int GradientColor_android_endColor = 0x00000001;
public static int GradientColor_android_endX = 0x0000000a;
public static int GradientColor_android_endY = 0x0000000b;
public static int GradientColor_android_gradientRadius = 0x00000005;
public static int GradientColor_android_startColor = 0x00000000;
public static int GradientColor_android_startX = 0x00000008;
public static int GradientColor_android_startY = 0x00000009;
public static int GradientColor_android_tileMode = 0x00000006;
public static int GradientColor_android_type = 0x00000002;
public static int[] ColorStateListItem = {android.R.attr.color, android.R.attr.alpha, android.R.attr.lStar, com.ea.games.r3_row.R.attr.alpha, com.ea.games.r3_row.R.attr.lStar};
public static int[] FontFamily = {com.ea.games.r3_row.R.attr.fontProviderAuthority, com.ea.games.r3_row.R.attr.fontProviderCerts, com.ea.games.r3_row.R.attr.fontProviderFallbackQuery, com.ea.games.r3_row.R.attr.fontProviderFetchStrategy, com.ea.games.r3_row.R.attr.fontProviderFetchTimeout, com.ea.games.r3_row.R.attr.fontProviderPackage, com.ea.games.r3_row.R.attr.fontProviderQuery, com.ea.games.r3_row.R.attr.fontProviderSystemFontFamily};
public static int[] FontFamilyFont = {android.R.attr.font, android.R.attr.fontWeight, android.R.attr.fontStyle, android.R.attr.ttcIndex, android.R.attr.fontVariationSettings, com.ea.games.r3_row.R.attr.font, com.ea.games.r3_row.R.attr.fontStyle, com.ea.games.r3_row.R.attr.fontVariationSettings, com.ea.games.r3_row.R.attr.fontWeight, com.ea.games.r3_row.R.attr.ttcIndex};
public static int[] GradientColor = {android.R.attr.startColor, android.R.attr.endColor, android.R.attr.type, android.R.attr.centerX, android.R.attr.centerY, android.R.attr.gradientRadius, android.R.attr.tileMode, android.R.attr.centerColor, android.R.attr.startX, android.R.attr.startY, android.R.attr.endX, android.R.attr.endY};
public static int[] GradientColorItem = {android.R.attr.color, android.R.attr.offset};
private styleable() {
}
}
private R() {
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,40 @@
package com.facebook.bolts;
/* loaded from: classes2.dex */
public class TaskCompletionSource<TResult> {
private final Task<TResult> task = new Task<>();
public final Task<TResult> getTask() {
return this.task;
}
public final boolean trySetCancelled() {
return this.task.trySetCancelled();
}
public final boolean trySetResult(TResult tresult) {
return this.task.trySetResult(tresult);
}
public final boolean trySetError(Exception exc) {
return this.task.trySetError(exc);
}
public final void setCancelled() {
if (!trySetCancelled()) {
throw new IllegalStateException("Cannot cancel a completed task.".toString());
}
}
public final void setResult(TResult tresult) {
if (!trySetResult(tresult)) {
throw new IllegalStateException("Cannot set the result of a completed task.".toString());
}
}
public final void setError(Exception exc) {
if (!trySetError(exc)) {
throw new IllegalStateException("Cannot set the error on a completed task.".toString());
}
}
}

View File

@@ -0,0 +1,27 @@
package com.facebook.bolts;
import androidx.annotation.VisibleForTesting;
import com.facebook.bolts.Task;
/* loaded from: classes2.dex */
public final class UnobservedErrorNotifier {
private Task<?> task;
public final void setObserved() {
this.task = null;
}
public UnobservedErrorNotifier(Task<?> task) {
this.task = task;
}
@VisibleForTesting(otherwise = 4)
public final void finalize() {
Task.UnobservedExceptionHandler unobservedExceptionHandler;
Task<?> task = this.task;
if (task == null || (unobservedExceptionHandler = Task.Companion.getUnobservedExceptionHandler()) == null) {
return;
}
unobservedExceptionHandler.unobservedException(task, new UnobservedTaskException(task.getError()));
}
}

View File

@@ -0,0 +1,8 @@
package com.facebook.bolts;
/* loaded from: classes2.dex */
public final class UnobservedTaskException extends RuntimeException {
public UnobservedTaskException(Throwable th) {
super(th);
}
}