- 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
33 lines
667 B
Java
33 lines
667 B
Java
package com.ea.nimble.mtx;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class NimbleCatalogItem {
|
|
|
|
public enum ItemType {
|
|
UNKNOWN,
|
|
NONCONSUMABLE,
|
|
CONSUMABLE,
|
|
SUBSCRIPTION
|
|
}
|
|
|
|
public abstract Map<String, Object> getAdditionalInfo();
|
|
|
|
public abstract String getDescription();
|
|
|
|
public abstract ItemType getItemType();
|
|
|
|
public abstract String getMetaDataUrl();
|
|
|
|
public abstract float getPriceDecimal();
|
|
|
|
public abstract String getPriceWithCurrencyAndFormat();
|
|
|
|
public abstract String getSellId();
|
|
|
|
public abstract String getSku();
|
|
|
|
public abstract String getTitle();
|
|
}
|