Files
rr3-apk/decompiled/sources/com/google/firebase/crashlytics/internal/settings/SettingsRequest.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

29 lines
1.0 KiB
Java

package com.google.firebase.crashlytics.internal.settings;
import com.google.firebase.crashlytics.internal.common.InstallIdProvider;
/* loaded from: classes3.dex */
public class SettingsRequest {
public final String buildVersion;
public final String deviceModel;
public final String displayVersion;
public final String googleAppId;
public final InstallIdProvider installIdProvider;
public final String instanceId;
public final String osBuildVersion;
public final String osDisplayVersion;
public final int source;
public SettingsRequest(String str, String str2, String str3, String str4, InstallIdProvider installIdProvider, String str5, String str6, String str7, int i) {
this.googleAppId = str;
this.deviceModel = str2;
this.osBuildVersion = str3;
this.osDisplayVersion = str4;
this.installIdProvider = installIdProvider;
this.instanceId = str5;
this.displayVersion = str6;
this.buildVersion = str7;
this.source = i;
}
}