- 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
500 B
Java
17 lines
500 B
Java
package com.ea.nimble.tracking;
|
|
|
|
import com.ea.nimble.Base;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class NimbleTrackingSynergyComponent extends NimbleTrackingThreadProxy {
|
|
static final String COMPONENT_ID = "com.ea.nimble.trackingimpl.synergy";
|
|
|
|
public static void initialize() {
|
|
Base.registerComponent(new NimbleTrackingSynergyComponent(), "com.ea.nimble.trackingimpl.synergy");
|
|
}
|
|
|
|
private NimbleTrackingSynergyComponent() {
|
|
super(new NimbleTrackingSynergyImpl());
|
|
}
|
|
}
|