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,43 @@
package com.bda.controller;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes2.dex */
class BaseEvent implements Parcelable {
public static final Parcelable.Creator<BaseEvent> CREATOR = new ParcelableCreator();
public final int mControllerId;
public final long mEventTime;
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public int getControllerId() {
return this.mControllerId;
}
public BaseEvent(Parcel parcel) {
this.mEventTime = parcel.readLong();
this.mControllerId = parcel.readInt();
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeLong(this.mEventTime);
parcel.writeInt(this.mControllerId);
}
public static class ParcelableCreator implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
public BaseEvent createFromParcel(Parcel parcel) {
return new BaseEvent(parcel);
}
@Override // android.os.Parcelable.Creator
public BaseEvent[] newArray(int i) {
return new BaseEvent[i];
}
}
}