- 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
53 lines
1.6 KiB
Java
53 lines
1.6 KiB
Java
package com.facebook;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum AccessTokenSource {
|
|
NONE(false),
|
|
FACEBOOK_APPLICATION_WEB(true),
|
|
FACEBOOK_APPLICATION_NATIVE(true),
|
|
FACEBOOK_APPLICATION_SERVICE(true),
|
|
WEB_VIEW(true),
|
|
CHROME_CUSTOM_TAB(true),
|
|
TEST_USER(true),
|
|
CLIENT_TOKEN(true),
|
|
DEVICE_AUTH(true),
|
|
INSTAGRAM_APPLICATION_WEB(true),
|
|
INSTAGRAM_CUSTOM_CHROME_TAB(true),
|
|
INSTAGRAM_WEB_VIEW(true);
|
|
|
|
private final boolean canExtendToken;
|
|
|
|
public /* synthetic */ class WhenMappings {
|
|
public static final /* synthetic */ int[] $EnumSwitchMapping$0;
|
|
|
|
static {
|
|
int[] iArr = new int[AccessTokenSource.valuesCustom().length];
|
|
iArr[AccessTokenSource.INSTAGRAM_APPLICATION_WEB.ordinal()] = 1;
|
|
iArr[AccessTokenSource.INSTAGRAM_CUSTOM_CHROME_TAB.ordinal()] = 2;
|
|
iArr[AccessTokenSource.INSTAGRAM_WEB_VIEW.ordinal()] = 3;
|
|
$EnumSwitchMapping$0 = iArr;
|
|
}
|
|
}
|
|
|
|
public final boolean canExtendToken() {
|
|
return this.canExtendToken;
|
|
}
|
|
|
|
AccessTokenSource(boolean z) {
|
|
this.canExtendToken = z;
|
|
}
|
|
|
|
public final boolean fromInstagram() {
|
|
int i = WhenMappings.$EnumSwitchMapping$0[ordinal()];
|
|
return i == 1 || i == 2 || i == 3;
|
|
}
|
|
|
|
/* renamed from: values, reason: to resolve conflict with enum method */
|
|
public static AccessTokenSource[] valuesCustom() {
|
|
AccessTokenSource[] valuesCustom = values();
|
|
return (AccessTokenSource[]) Arrays.copyOf(valuesCustom, valuesCustom.length);
|
|
}
|
|
}
|