- 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
29 lines
885 B
Java
29 lines
885 B
Java
package com.vungle.ads.internal.task;
|
|
|
|
import android.os.Bundle;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface Job {
|
|
int onRunJob(Bundle bundle, JobRunner jobRunner);
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface Result {
|
|
public static final Companion Companion = Companion.$$INSTANCE;
|
|
public static final int FAILURE = 1;
|
|
public static final int RESCHEDULE = 2;
|
|
public static final int SUCCESS = 0;
|
|
|
|
public static final class Companion {
|
|
static final /* synthetic */ Companion $$INSTANCE = new Companion();
|
|
public static final int FAILURE = 1;
|
|
public static final int RESCHEDULE = 2;
|
|
public static final int SUCCESS = 0;
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|
|
}
|