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,38 @@
package com.digitalturbine.ignite.authenticator.utils.concurency;
import android.os.Handler;
import android.os.Looper;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
/* loaded from: classes2.dex */
public abstract class a {
public static final ThreadPoolExecutor a;
public static final Handler b = new Handler(Looper.getMainLooper());
/* renamed from: com.digitalturbine.ignite.authenticator.utils.concurency.a$a, reason: collision with other inner class name */
public class ThreadFactoryC0050a implements ThreadFactory {
public final AtomicInteger a = new AtomicInteger(1);
@Override // java.util.concurrent.ThreadFactory
public final Thread newThread(Runnable runnable) {
return new Thread(runnable, "ConcurrencyUtil#" + this.a.getAndIncrement());
}
}
public class b implements RejectedExecutionHandler {
@Override // java.util.concurrent.RejectedExecutionHandler
public final void rejectedExecution(Runnable runnable, ThreadPoolExecutor threadPoolExecutor) {
}
}
static {
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(1, 2, 30L, TimeUnit.SECONDS, new LinkedBlockingQueue(5), new ThreadFactoryC0050a(), new b());
threadPoolExecutor.allowCoreThreadTimeOut(true);
a = threadPoolExecutor;
}
}