Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,50 @@
package com.google.maps.android.ktx;
import kotlin.Metadata;
/* JADX INFO: compiled from: GoogleMap.kt */
/* JADX INFO: loaded from: classes2.dex */
@Metadata(d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\t\u0010\u0007\u001a\u00020\u0003HÆ\u0003J\u0013\u0010\b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\t\u001a\u00020\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\fHÖ\u0003J\t\u0010\r\u001a\u00020\u0003HÖ\u0001J\t\u0010\u000e\u001a\u00020\u000fHÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u0010"}, d2 = {"Lcom/google/maps/android/ktx/CameraMoveStartedEvent;", "Lcom/google/maps/android/ktx/CameraEvent;", "reason", "", "(I)V", "getReason", "()I", "component1", "copy", "equals", "", "other", "", "hashCode", "toString", "", "maps-ktx_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
public final /* data */ class CameraMoveStartedEvent extends CameraEvent {
private final int reason;
public static /* synthetic */ CameraMoveStartedEvent copy$default(CameraMoveStartedEvent cameraMoveStartedEvent, int i, int i2, Object obj) {
if ((i2 & 1) != 0) {
i = cameraMoveStartedEvent.reason;
}
return cameraMoveStartedEvent.copy(i);
}
/* JADX INFO: renamed from: component1, reason: from getter */
public final int getReason() {
return this.reason;
}
public final CameraMoveStartedEvent copy(int reason) {
return new CameraMoveStartedEvent(reason);
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
return (other instanceof CameraMoveStartedEvent) && this.reason == ((CameraMoveStartedEvent) other).reason;
}
public int hashCode() {
return Integer.hashCode(this.reason);
}
public String toString() {
return "CameraMoveStartedEvent(reason=" + this.reason + ')';
}
public CameraMoveStartedEvent(int i) {
super(null);
this.reason = i;
}
public final int getReason() {
return this.reason;
}
}