- 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
20 lines
408 B
Java
20 lines
408 B
Java
package androidx.core.provider;
|
|
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import androidx.annotation.NonNull;
|
|
|
|
/* loaded from: classes.dex */
|
|
class CalleeHandler {
|
|
private CalleeHandler() {
|
|
}
|
|
|
|
@NonNull
|
|
public static Handler create() {
|
|
if (Looper.myLooper() == null) {
|
|
return new Handler(Looper.getMainLooper());
|
|
}
|
|
return new Handler();
|
|
}
|
|
}
|