- 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
17 lines
417 B
Java
17 lines
417 B
Java
package com.amazonaws;
|
|
|
|
import java.util.concurrent.atomic.AtomicLong;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class SDKGlobalConfiguration {
|
|
public static final AtomicLong GLOBAL_TIME_OFFSET = new AtomicLong(0);
|
|
|
|
public static void setGlobalTimeOffset(long j) {
|
|
GLOBAL_TIME_OFFSET.set(j);
|
|
}
|
|
|
|
public static long getGlobalTimeOffset() {
|
|
return GLOBAL_TIME_OFFSET.get();
|
|
}
|
|
}
|