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,66 @@
package com.google.android.exoplayer2.metadata.id3;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.android.exoplayer2.util.Util;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes2.dex */
public final class UrlLinkFrame extends Id3Frame {
public static final Parcelable.Creator<UrlLinkFrame> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.id3.UrlLinkFrame.1
@Override // android.os.Parcelable.Creator
public UrlLinkFrame createFromParcel(Parcel parcel) {
return new UrlLinkFrame(parcel);
}
@Override // android.os.Parcelable.Creator
public UrlLinkFrame[] newArray(int i) {
return new UrlLinkFrame[i];
}
};
public final String description;
public final String url;
public UrlLinkFrame(Parcel parcel) {
super((String) Util.castNonNull(parcel.readString()));
this.description = parcel.readString();
this.url = (String) Util.castNonNull(parcel.readString());
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || UrlLinkFrame.class != obj.getClass()) {
return false;
}
UrlLinkFrame urlLinkFrame = (UrlLinkFrame) obj;
return this.id.equals(urlLinkFrame.id) && Util.areEqual(this.description, urlLinkFrame.description) && Util.areEqual(this.url, urlLinkFrame.url);
}
public int hashCode() {
int hashCode = (IronSourceError.ERROR_NON_EXISTENT_INSTANCE + this.id.hashCode()) * 31;
String str = this.description;
int hashCode2 = (hashCode + (str != null ? str.hashCode() : 0)) * 31;
String str2 = this.url;
return hashCode2 + (str2 != null ? str2.hashCode() : 0);
}
@Override // com.google.android.exoplayer2.metadata.id3.Id3Frame
public String toString() {
String str = this.id;
String str2 = this.url;
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 6 + String.valueOf(str2).length());
sb.append(str);
sb.append(": url=");
sb.append(str2);
return sb.toString();
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.id);
parcel.writeString(this.description);
parcel.writeString(this.url);
}
}