- 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
29 lines
585 B
Java
29 lines
585 B
Java
package com.google.firebase.crashlytics.internal.common;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum DeliveryMechanism {
|
|
DEVELOPER(1),
|
|
USER_SIDELOAD(2),
|
|
TEST_DISTRIBUTION(3),
|
|
APP_STORE(4);
|
|
|
|
private final int id;
|
|
|
|
public static DeliveryMechanism determineFrom(String str) {
|
|
return str != null ? APP_STORE : DEVELOPER;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
DeliveryMechanism(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return Integer.toString(this.id);
|
|
}
|
|
}
|