- 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
88 lines
1.7 KiB
Java
88 lines
1.7 KiB
Java
package com.ea.nimble;
|
|
|
|
import android.content.Context;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IApplicationEnvironment {
|
|
public static final String UNAVAILABLE_ADVERTISING_ID = "";
|
|
|
|
public interface AdvertisingIdCalback {
|
|
void onCallback(String str, boolean z);
|
|
}
|
|
|
|
public interface IntegrityTokenCallback {
|
|
void onCallback(String str, Error error);
|
|
}
|
|
|
|
String getAdvertisingId();
|
|
|
|
int getAgeCompliance();
|
|
|
|
String getAndroidId();
|
|
|
|
String getApplicationBundleId();
|
|
|
|
Context getApplicationContext();
|
|
|
|
String getApplicationLanguageCode();
|
|
|
|
String getApplicationName();
|
|
|
|
String getApplicationVersion();
|
|
|
|
String getCachePath();
|
|
|
|
String getCarrier();
|
|
|
|
String getCurrencyCode();
|
|
|
|
String getDeviceBrand();
|
|
|
|
String getDeviceCodename();
|
|
|
|
String getDeviceFingerprint();
|
|
|
|
String getDeviceManufacturer();
|
|
|
|
String getDeviceModel();
|
|
|
|
String getDeviceString();
|
|
|
|
String getDocumentPath();
|
|
|
|
String getGameSpecifiedPlayerId();
|
|
|
|
String getGoogleAdvertisingId();
|
|
|
|
boolean getIadAttribution();
|
|
|
|
String getOsVersion();
|
|
|
|
String getParameter(String str);
|
|
|
|
Map<String, String> getPlayerIdMap();
|
|
|
|
String getShortApplicationLanguageCode();
|
|
|
|
String getTempPath();
|
|
|
|
boolean isAppCracked();
|
|
|
|
boolean isDeviceRooted();
|
|
|
|
boolean isLimitAdTrackingEnabled();
|
|
|
|
void refreshAgeCompliance();
|
|
|
|
void requestIntegrityToken(String str, IntegrityTokenCallback integrityTokenCallback);
|
|
|
|
void retrieveAdvertisingId(AdvertisingIdCalback advertisingIdCalback);
|
|
|
|
void setApplicationLanguageCode(String str);
|
|
|
|
void setGameSpecifiedPlayerId(String str);
|
|
|
|
void setPlayerId(String str, String str2);
|
|
}
|