Files
rr3-apk/decompiled-community/sources/com/digitalturbine/ignite/cl/aidl/IIgniteServiceCallback.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

63 lines
2.1 KiB
Java

package com.digitalturbine.ignite.cl.aidl;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
/* loaded from: classes2.dex */
public interface IIgniteServiceCallback extends IInterface {
void onError(String str) throws RemoteException;
void onProgress(String str) throws RemoteException;
void onScheduled(String str) throws RemoteException;
void onStart(String str) throws RemoteException;
void onSuccess(String str) throws RemoteException;
public static abstract class Stub extends Binder implements IIgniteServiceCallback {
public Stub() {
attachInterface(this, "com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
}
@Override // android.os.IInterface
public IBinder asBinder() {
return this;
}
@Override // android.os.Binder
public boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
if (i >= 1 && i <= 16777215) {
parcel.enforceInterface("com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
}
if (i == 1598968902) {
parcel2.writeString("com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
return true;
}
if (i == 1) {
onScheduled(parcel.readString());
parcel2.writeNoException();
} else if (i == 2) {
onStart(parcel.readString());
parcel2.writeNoException();
} else if (i == 3) {
onProgress(parcel.readString());
parcel2.writeNoException();
} else if (i == 4) {
onSuccess(parcel.readString());
parcel2.writeNoException();
} else {
if (i != 5) {
return super.onTransact(i, parcel, parcel2, i2);
}
onError(parcel.readString());
parcel2.writeNoException();
}
return true;
}
}
}