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,47 @@
package com.google.firebase.platforminfo;
/* loaded from: classes3.dex */
public final class AutoValue_LibraryVersion extends LibraryVersion {
public final String libraryName;
public final String version;
@Override // com.google.firebase.platforminfo.LibraryVersion
public String getLibraryName() {
return this.libraryName;
}
@Override // com.google.firebase.platforminfo.LibraryVersion
public String getVersion() {
return this.version;
}
public AutoValue_LibraryVersion(String str, String str2) {
if (str == null) {
throw new NullPointerException("Null libraryName");
}
this.libraryName = str;
if (str2 == null) {
throw new NullPointerException("Null version");
}
this.version = str2;
}
public String toString() {
return "LibraryVersion{libraryName=" + this.libraryName + ", version=" + this.version + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof LibraryVersion)) {
return false;
}
LibraryVersion libraryVersion = (LibraryVersion) obj;
return this.libraryName.equals(libraryVersion.getLibraryName()) && this.version.equals(libraryVersion.getVersion());
}
public int hashCode() {
return ((this.libraryName.hashCode() ^ 1000003) * 1000003) ^ this.version.hashCode();
}
}