- 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
48 lines
1.4 KiB
Java
48 lines
1.4 KiB
Java
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();
|
|
}
|
|
}
|