- 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
43 lines
1.3 KiB
Java
43 lines
1.3 KiB
Java
package com.facebook.appevents.cloudbridge;
|
|
|
|
import com.applovin.sdk.AppLovinEventTypes;
|
|
import com.tapjoy.TJAdUnitConstants;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum ConversionsAPICustomEventField {
|
|
VALUE_TO_SUM("value"),
|
|
EVENT_TIME("event_time"),
|
|
EVENT_NAME(TJAdUnitConstants.PARAM_PLACEMENT_NAME),
|
|
CONTENT_IDS("content_ids"),
|
|
CONTENTS("contents"),
|
|
CONTENT_TYPE("content_type"),
|
|
DESCRIPTION("description"),
|
|
LEVEL(AppLovinEventTypes.USER_COMPLETED_LEVEL),
|
|
MAX_RATING_VALUE("max_rating_value"),
|
|
NUM_ITEMS("num_items"),
|
|
PAYMENT_INFO_AVAILABLE("payment_info_available"),
|
|
REGISTRATION_METHOD("registration_method"),
|
|
SEARCH_STRING("search_string"),
|
|
SUCCESS("success"),
|
|
ORDER_ID("order_id"),
|
|
AD_TYPE("ad_type"),
|
|
CURRENCY("currency");
|
|
|
|
private final String rawValue;
|
|
|
|
public final String getRawValue() {
|
|
return this.rawValue;
|
|
}
|
|
|
|
ConversionsAPICustomEventField(String str) {
|
|
this.rawValue = str;
|
|
}
|
|
|
|
/* renamed from: values, reason: to resolve conflict with enum method */
|
|
public static ConversionsAPICustomEventField[] valuesCustom() {
|
|
ConversionsAPICustomEventField[] valuesCustom = values();
|
|
return (ConversionsAPICustomEventField[]) Arrays.copyOf(valuesCustom, valuesCustom.length);
|
|
}
|
|
}
|