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,102 @@
package com.google.android.gms.drive.metadata;
import android.os.Parcel;
import android.os.Parcelable;
import com.facebook.appevents.internal.ViewHierarchyConstants;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
import com.google.android.gms.common.internal.safeparcel.SafeParcelable;
import java.util.regex.Pattern;
import org.json.JSONException;
import org.json.JSONObject;
@SafeParcelable.Class(creator = "CustomPropertyKeyCreator")
@SafeParcelable.Reserved({1})
/* loaded from: classes2.dex */
public class CustomPropertyKey extends AbstractSafeParcelable {
public static final int PRIVATE = 1;
public static final int PUBLIC = 0;
@SafeParcelable.Field(id = 3)
private final int visibility;
@SafeParcelable.Field(id = 2)
private final String zziz;
public static final Parcelable.Creator<CustomPropertyKey> CREATOR = new zzc();
private static final Pattern zzja = Pattern.compile("[\\w.!@$%^&*()/-]+");
@SafeParcelable.Constructor
public CustomPropertyKey(@SafeParcelable.Param(id = 2) String str, @SafeParcelable.Param(id = 3) int i) {
Preconditions.checkNotNull(str, "key");
Preconditions.checkArgument(zzja.matcher(str).matches(), "key name characters must be alphanumeric or one of .!@$%^&*()-_/");
boolean z = true;
if (i != 0 && i != 1) {
z = false;
}
Preconditions.checkArgument(z, "visibility must be either PUBLIC or PRIVATE");
this.zziz = str;
this.visibility = i;
}
public String getKey() {
return this.zziz;
}
public int getVisibility() {
return this.visibility;
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
SafeParcelWriter.writeString(parcel, 2, this.zziz, false);
SafeParcelWriter.writeInt(parcel, 3, this.visibility);
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
}
public int hashCode() {
String str = this.zziz;
int i = this.visibility;
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 11);
sb.append(str);
sb.append(i);
return sb.toString().hashCode();
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj != null && obj.getClass() == getClass()) {
CustomPropertyKey customPropertyKey = (CustomPropertyKey) obj;
if (customPropertyKey.getKey().equals(this.zziz) && customPropertyKey.getVisibility() == this.visibility) {
return true;
}
}
return false;
}
public String toString() {
String str = this.zziz;
int i = this.visibility;
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 31);
sb.append("CustomPropertyKey(");
sb.append(str);
sb.append(",");
sb.append(i);
sb.append(")");
return sb.toString();
}
public JSONObject toJson() throws JSONException {
JSONObject jSONObject = new JSONObject();
jSONObject.put("key", getKey());
jSONObject.put(ViewHierarchyConstants.DIMENSION_VISIBILITY_KEY, getVisibility());
return jSONObject;
}
public static CustomPropertyKey fromJson(JSONObject jSONObject) throws JSONException {
return new CustomPropertyKey(jSONObject.getString("key"), jSONObject.getInt(ViewHierarchyConstants.DIMENSION_VISIBILITY_KEY));
}
}