- 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
36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
package com.unity3d.ads.adplayer.model;
|
|
|
|
import com.unity3d.services.core.device.StorageEvent;
|
|
import com.unity3d.services.core.device.StorageManager;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class OnStorageEvent implements WebViewEvent {
|
|
private final String category;
|
|
private final String name;
|
|
private final Object[] parameters;
|
|
|
|
@Override // com.unity3d.ads.adplayer.model.WebViewEvent
|
|
public String getCategory() {
|
|
return this.category;
|
|
}
|
|
|
|
@Override // com.unity3d.ads.adplayer.model.WebViewEvent
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
@Override // com.unity3d.ads.adplayer.model.WebViewEvent
|
|
public Object[] getParameters() {
|
|
return this.parameters;
|
|
}
|
|
|
|
public OnStorageEvent(StorageEvent eventType, StorageManager.StorageType storageType, Object obj) {
|
|
Intrinsics.checkNotNullParameter(eventType, "eventType");
|
|
Intrinsics.checkNotNullParameter(storageType, "storageType");
|
|
this.category = "STORAGE";
|
|
this.name = eventType.name();
|
|
this.parameters = new Object[]{storageType.name(), obj};
|
|
}
|
|
}
|