Files
rr3-apk/decompiled/sources/com/ea/nimble/IApplicationEnvironment.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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);
}