- 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
515 B
Java
22 lines
515 B
Java
package com.ea.nimble.bridge;
|
|
|
|
import com.ea.nimble.Error;
|
|
import com.ea.nimble.IFacebook;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class FacebookNativeCallback implements IFacebook.RequestCallback {
|
|
private int m_id;
|
|
|
|
public FacebookNativeCallback(int i) {
|
|
this.m_id = i;
|
|
}
|
|
|
|
public void callback(String str, Error error) {
|
|
BaseNativeCallback.sendNativeCallback(this.m_id, str, error);
|
|
}
|
|
|
|
public void finalize() {
|
|
BaseNativeCallback.nativeFinalize(this.m_id);
|
|
}
|
|
}
|