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,41 @@
package com.facebook.appevents.cloudbridge;
import com.applovin.sdk.AppLovinEventParameters;
import java.util.Arrays;
/* loaded from: classes2.dex */
public enum ConversionsAPIUserAndAppDataField {
ANON_ID("anon_id"),
FB_LOGIN_ID("fb_login_id"),
MAD_ID("madid"),
PAGE_ID("page_id"),
PAGE_SCOPED_USER_ID("page_scoped_user_id"),
USER_DATA("ud"),
ADV_TE("advertiser_tracking_enabled"),
APP_TE("application_tracking_enabled"),
CONSIDER_VIEWS("consider_views"),
DEVICE_TOKEN("device_token"),
EXT_INFO("extInfo"),
INCLUDE_DWELL_DATA("include_dwell_data"),
INCLUDE_VIDEO_DATA("include_video_data"),
INSTALL_REFERRER("install_referrer"),
INSTALLER_PACKAGE("installer_package"),
RECEIPT_DATA(AppLovinEventParameters.IN_APP_PURCHASE_DATA),
URL_SCHEMES("url_schemes");
private final String rawValue;
public final String getRawValue() {
return this.rawValue;
}
ConversionsAPIUserAndAppDataField(String str) {
this.rawValue = str;
}
/* renamed from: values, reason: to resolve conflict with enum method */
public static ConversionsAPIUserAndAppDataField[] valuesCustom() {
ConversionsAPIUserAndAppDataField[] valuesCustom = values();
return (ConversionsAPIUserAndAppDataField[]) Arrays.copyOf(valuesCustom, valuesCustom.length);
}
}