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,8 @@
package com.mbridge.msdk.video.dynview.i.c;
/* loaded from: classes4.dex */
public interface a {
void a();
void a(long j);
}

View File

@@ -0,0 +1,96 @@
package com.mbridge.msdk.video.dynview.i.c;
import android.os.CountDownTimer;
/* loaded from: classes4.dex */
public final class b {
private long a = 0;
private long b;
private com.mbridge.msdk.video.dynview.i.c.a c;
private a d;
public final b a(long j) {
if (j < 0) {
j = 1000;
}
this.b = j;
return this;
}
public final b a(com.mbridge.msdk.video.dynview.i.c.a aVar) {
this.c = aVar;
return this;
}
public final b b(long j) {
this.a = j;
return this;
}
private void c() {
a aVar = this.d;
if (aVar != null) {
aVar.cancel();
this.d = null;
}
if (this.b <= 0) {
this.b = this.a + 1000;
}
a aVar2 = new a(this.a, this.b);
this.d = aVar2;
aVar2.a(this.c);
}
public final void a() {
if (this.d == null) {
c();
}
this.d.start();
}
public final void a(long j, com.mbridge.msdk.video.dynview.i.c.a aVar) {
this.a = j;
this.c = aVar;
c();
a aVar2 = this.d;
if (aVar2 != null) {
aVar2.start();
}
}
public final void b() {
a aVar = this.d;
if (aVar != null) {
aVar.cancel();
this.d = null;
}
}
public static class a extends CountDownTimer {
private com.mbridge.msdk.video.dynview.i.c.a a;
public final void a(com.mbridge.msdk.video.dynview.i.c.a aVar) {
this.a = aVar;
}
public a(long j, long j2) {
super(j, j2);
}
@Override // android.os.CountDownTimer
public final void onTick(long j) {
com.mbridge.msdk.video.dynview.i.c.a aVar = this.a;
if (aVar != null) {
aVar.a(j);
}
}
@Override // android.os.CountDownTimer
public final void onFinish() {
com.mbridge.msdk.video.dynview.i.c.a aVar = this.a;
if (aVar != null) {
aVar.a();
}
}
}
}