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,52 @@
package com.google.firebase;
/* loaded from: classes3.dex */
public final class AutoValue_StartupTime extends StartupTime {
public final long elapsedRealtime;
public final long epochMillis;
public final long uptimeMillis;
@Override // com.google.firebase.StartupTime
public long getElapsedRealtime() {
return this.elapsedRealtime;
}
@Override // com.google.firebase.StartupTime
public long getEpochMillis() {
return this.epochMillis;
}
@Override // com.google.firebase.StartupTime
public long getUptimeMillis() {
return this.uptimeMillis;
}
public int hashCode() {
long j = this.epochMillis;
long j2 = this.elapsedRealtime;
int i = (((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003;
long j3 = this.uptimeMillis;
return i ^ ((int) ((j3 >>> 32) ^ j3));
}
public AutoValue_StartupTime(long j, long j2, long j3) {
this.epochMillis = j;
this.elapsedRealtime = j2;
this.uptimeMillis = j3;
}
public String toString() {
return "StartupTime{epochMillis=" + this.epochMillis + ", elapsedRealtime=" + this.elapsedRealtime + ", uptimeMillis=" + this.uptimeMillis + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof StartupTime)) {
return false;
}
StartupTime startupTime = (StartupTime) obj;
return this.epochMillis == startupTime.getEpochMillis() && this.elapsedRealtime == startupTime.getElapsedRealtime() && this.uptimeMillis == startupTime.getUptimeMillis();
}
}