- 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
22 lines
471 B
Java
22 lines
471 B
Java
package com.ea.fuel.metrics;
|
|
|
|
import android.content.Context;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class FuelMetrics {
|
|
public static Context context;
|
|
|
|
private static native void NativeShutdown();
|
|
|
|
private static native void NativeStartup();
|
|
|
|
public static void Startup(Context context2) {
|
|
context = context2.getApplicationContext();
|
|
NativeStartup();
|
|
}
|
|
|
|
public static void Shutdown() {
|
|
NativeShutdown();
|
|
}
|
|
}
|