mirror of
https://github.com/defold/extension-iap
synced 2025-06-27 10:27:46 +02:00
563 lines
16 KiB
C++
563 lines
16 KiB
C++
#if defined(DM_PLATFORM_ANDROID)
|
|
|
|
#include <dmsdk/sdk.h>
|
|
#include <jni.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include "iap.h"
|
|
#include "iap_private.h"
|
|
|
|
#define LIB_NAME "iap"
|
|
|
|
struct IAP;
|
|
|
|
#define CMD_PRODUCT_RESULT (0)
|
|
#define CMD_PURCHASE_RESULT (1)
|
|
|
|
struct DM_ALIGNED(16) IAPCommand
|
|
{
|
|
IAPCommand()
|
|
{
|
|
memset(this, 0, sizeof(IAPCommand));
|
|
}
|
|
uint32_t m_Command;
|
|
int32_t m_ResponseCode;
|
|
void* m_Data1;
|
|
};
|
|
|
|
static JNIEnv* Attach()
|
|
{
|
|
JNIEnv* env;
|
|
dmGraphics::GetNativeAndroidJavaVM()->AttachCurrentThread(&env, NULL);
|
|
return env;
|
|
}
|
|
|
|
static void Detach()
|
|
{
|
|
dmGraphics::GetNativeAndroidJavaVM()->DetachCurrentThread();
|
|
}
|
|
|
|
|
|
struct IAP
|
|
{
|
|
IAP()
|
|
{
|
|
memset(this, 0, sizeof(*this));
|
|
m_Callback = LUA_NOREF;
|
|
m_Self = LUA_NOREF;
|
|
m_Listener.m_Callback = LUA_NOREF;
|
|
m_Listener.m_Self = LUA_NOREF;
|
|
m_autoFinishTransactions = true;
|
|
m_ProviderId = PROVIDER_ID_GOOGLE;
|
|
}
|
|
int m_InitCount;
|
|
int m_Callback;
|
|
int m_Self;
|
|
bool m_autoFinishTransactions;
|
|
int m_ProviderId;
|
|
lua_State* m_L;
|
|
IAPListener m_Listener;
|
|
|
|
jobject m_IAP;
|
|
jobject m_IAPJNI;
|
|
jmethodID m_List;
|
|
jmethodID m_Stop;
|
|
jmethodID m_Buy;
|
|
jmethodID m_Restore;
|
|
jmethodID m_ProcessPendingConsumables;
|
|
jmethodID m_FinishTransaction;
|
|
|
|
dmArray<IAPCommand> m_CommandsQueue;
|
|
dmMutex::HMutex m_Mutex;
|
|
};
|
|
|
|
static IAP g_IAP;
|
|
|
|
static void QueueCommand(IAPCommand* cmd)
|
|
{
|
|
DM_MUTEX_SCOPED_LOCK(g_IAP.m_Mutex);
|
|
|
|
if(g_IAP.m_CommandsQueue.Full())
|
|
{
|
|
g_IAP.m_CommandsQueue.OffsetCapacity(2);
|
|
}
|
|
g_IAP.m_CommandsQueue.Push(*cmd);
|
|
}
|
|
|
|
static void VerifyCallback(lua_State* L)
|
|
{
|
|
if (g_IAP.m_Callback != LUA_NOREF) {
|
|
dmLogError("Unexpected callback set");
|
|
dmScript::Unref(L, LUA_REGISTRYINDEX, g_IAP.m_Callback);
|
|
dmScript::Unref(L, LUA_REGISTRYINDEX, g_IAP.m_Self);
|
|
g_IAP.m_Callback = LUA_NOREF;
|
|
g_IAP.m_Self = LUA_NOREF;
|
|
g_IAP.m_L = 0;
|
|
}
|
|
}
|
|
|
|
static int IAP_List(lua_State* L)
|
|
{
|
|
int top = lua_gettop(L);
|
|
VerifyCallback(L);
|
|
|
|
char* buf = IAP_List_CreateBuffer(L);
|
|
if( buf == 0 )
|
|
{
|
|
assert(top == lua_gettop(L));
|
|
return 0;
|
|
}
|
|
|
|
luaL_checktype(L, 2, LUA_TFUNCTION);
|
|
lua_pushvalue(L, 2);
|
|
g_IAP.m_Callback = dmScript::Ref(L, LUA_REGISTRYINDEX);
|
|
|
|
dmScript::GetInstance(L);
|
|
g_IAP.m_Self = dmScript::Ref(L, LUA_REGISTRYINDEX);
|
|
|
|
g_IAP.m_L = dmScript::GetMainThread(L);
|
|
|
|
JNIEnv* env = Attach();
|
|
jstring products = env->NewStringUTF(buf);
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_List, products, g_IAP.m_IAPJNI);
|
|
env->DeleteLocalRef(products);
|
|
Detach();
|
|
|
|
free(buf);
|
|
assert(top == lua_gettop(L));
|
|
return 0;
|
|
}
|
|
|
|
static int IAP_Buy(lua_State* L)
|
|
{
|
|
int top = lua_gettop(L);
|
|
|
|
const char* id = luaL_checkstring(L, 1);
|
|
|
|
JNIEnv* env = Attach();
|
|
jstring ids = env->NewStringUTF(id);
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_Buy, ids, g_IAP.m_IAPJNI);
|
|
env->DeleteLocalRef(ids);
|
|
Detach();
|
|
|
|
assert(top == lua_gettop(L));
|
|
return 0;
|
|
}
|
|
|
|
static int IAP_Finish(lua_State* L)
|
|
{
|
|
if(g_IAP.m_autoFinishTransactions)
|
|
{
|
|
dmLogWarning("Calling iap.finish when autofinish transactions is enabled. Ignored.");
|
|
return 0;
|
|
}
|
|
|
|
int top = lua_gettop(L);
|
|
|
|
luaL_checktype(L, 1, LUA_TTABLE);
|
|
|
|
lua_getfield(L, -1, "state");
|
|
if (lua_isnumber(L, -1))
|
|
{
|
|
if(lua_tointeger(L, -1) != TRANS_STATE_PURCHASED)
|
|
{
|
|
dmLogError("Invalid transaction state (must be iap.TRANS_STATE_PURCHASED).");
|
|
lua_pop(L, 1);
|
|
assert(top == lua_gettop(L));
|
|
return 0;
|
|
}
|
|
}
|
|
lua_pop(L, 1);
|
|
|
|
lua_getfield(L, -1, "receipt");
|
|
if (!lua_isstring(L, -1)) {
|
|
dmLogError("Transaction error. Invalid transaction data, does not contain 'receipt' key.");
|
|
lua_pop(L, 1);
|
|
}
|
|
else
|
|
{
|
|
const char * receipt = lua_tostring(L, -1);
|
|
lua_pop(L, 1);
|
|
|
|
JNIEnv* env = Attach();
|
|
jstring receiptUTF = env->NewStringUTF(receipt);
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_FinishTransaction, receiptUTF, g_IAP.m_IAPJNI);
|
|
env->DeleteLocalRef(receiptUTF);
|
|
Detach();
|
|
}
|
|
|
|
assert(top == lua_gettop(L));
|
|
return 0;
|
|
}
|
|
|
|
static int IAP_Restore(lua_State* L)
|
|
{
|
|
// TODO: Missing callback here for completion/error
|
|
// See iap_ios.mm
|
|
|
|
int top = lua_gettop(L);
|
|
JNIEnv* env = Attach();
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_Restore, g_IAP.m_IAPJNI);
|
|
Detach();
|
|
|
|
assert(top == lua_gettop(L));
|
|
|
|
lua_pushboolean(L, 1);
|
|
return 1;
|
|
}
|
|
|
|
static int IAP_SetListener(lua_State* L)
|
|
{
|
|
IAP* iap = &g_IAP;
|
|
luaL_checktype(L, 1, LUA_TFUNCTION);
|
|
lua_pushvalue(L, 1);
|
|
int cb = dmScript::Ref(L, LUA_REGISTRYINDEX);
|
|
|
|
bool had_previous = false;
|
|
if (iap->m_Listener.m_Callback != LUA_NOREF) {
|
|
dmScript::Unref(iap->m_Listener.m_L, LUA_REGISTRYINDEX, iap->m_Listener.m_Callback);
|
|
dmScript::Unref(iap->m_Listener.m_L, LUA_REGISTRYINDEX, iap->m_Listener.m_Self);
|
|
had_previous = true;
|
|
}
|
|
|
|
iap->m_Listener.m_L = dmScript::GetMainThread(L);
|
|
iap->m_Listener.m_Callback = cb;
|
|
|
|
dmScript::GetInstance(L);
|
|
iap->m_Listener.m_Self = dmScript::Ref(L, LUA_REGISTRYINDEX);
|
|
|
|
// On first set listener, trigger process old ones.
|
|
if (!had_previous) {
|
|
JNIEnv* env = Attach();
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_ProcessPendingConsumables, g_IAP.m_IAPJNI);
|
|
Detach();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int IAP_GetProviderId(lua_State* L)
|
|
{
|
|
lua_pushinteger(L, g_IAP.m_ProviderId);
|
|
return 1;
|
|
}
|
|
|
|
static const luaL_reg IAP_methods[] =
|
|
{
|
|
{"list", IAP_List},
|
|
{"buy", IAP_Buy},
|
|
{"finish", IAP_Finish},
|
|
{"restore", IAP_Restore},
|
|
{"set_listener", IAP_SetListener},
|
|
{"get_provider_id", IAP_GetProviderId},
|
|
{0, 0}
|
|
};
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_com_defold_iap_IapJNI_onProductsResult__ILjava_lang_String_2(JNIEnv* env, jobject, jint responseCode, jstring productList)
|
|
{
|
|
const char* pl = 0;
|
|
if (productList)
|
|
{
|
|
pl = env->GetStringUTFChars(productList, 0);
|
|
}
|
|
|
|
IAPCommand cmd;
|
|
cmd.m_Command = CMD_PRODUCT_RESULT;
|
|
cmd.m_ResponseCode = responseCode;
|
|
if (pl)
|
|
{
|
|
cmd.m_Data1 = strdup(pl);
|
|
env->ReleaseStringUTFChars(productList, pl);
|
|
}
|
|
QueueCommand(&cmd);
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_com_defold_iap_IapJNI_onPurchaseResult__ILjava_lang_String_2(JNIEnv* env, jobject, jint responseCode, jstring purchaseData)
|
|
{
|
|
const char* pd = 0;
|
|
if (purchaseData)
|
|
{
|
|
pd = env->GetStringUTFChars(purchaseData, 0);
|
|
}
|
|
|
|
IAPCommand cmd;
|
|
cmd.m_Command = CMD_PURCHASE_RESULT;
|
|
cmd.m_ResponseCode = responseCode;
|
|
if (pd)
|
|
{
|
|
cmd.m_Data1 = strdup(pd);
|
|
env->ReleaseStringUTFChars(purchaseData, pd);
|
|
}
|
|
QueueCommand(&cmd);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
static void HandleProductResult(const IAPCommand* cmd)
|
|
{
|
|
lua_State* L = g_IAP.m_L;
|
|
int top = lua_gettop(L);
|
|
|
|
if (g_IAP.m_Callback == LUA_NOREF) {
|
|
dmLogError("No callback set");
|
|
return;
|
|
}
|
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, g_IAP.m_Callback);
|
|
|
|
// Setup self
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, g_IAP.m_Self);
|
|
lua_pushvalue(L, -1);
|
|
dmScript::SetInstance(L);
|
|
|
|
if (!dmScript::IsInstanceValid(L))
|
|
{
|
|
dmLogError("Could not run IAP callback because the instance has been deleted.");
|
|
lua_pop(L, 2);
|
|
assert(top == lua_gettop(L));
|
|
return;
|
|
}
|
|
|
|
if (cmd->m_ResponseCode == BILLING_RESPONSE_RESULT_OK) {
|
|
dmJson::Document doc;
|
|
dmJson::Result r = dmJson::Parse((const char*) cmd->m_Data1, &doc);
|
|
if (r == dmJson::RESULT_OK && doc.m_NodeCount > 0) {
|
|
char err_str[128];
|
|
if (dmScript::JsonToLua(L, &doc, 0, err_str, sizeof(err_str)) < 0) {
|
|
dmLogError("Failed converting product result JSON to Lua; %s", err_str);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to convert JSON to Lua for product response", REASON_UNSPECIFIED);
|
|
} else {
|
|
lua_pushnil(L);
|
|
}
|
|
} else {
|
|
dmLogError("Failed to parse product response (%d)", r);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to parse product response", REASON_UNSPECIFIED);
|
|
}
|
|
dmJson::Free(&doc);
|
|
} else {
|
|
dmLogError("IAP error %d", cmd->m_ResponseCode);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to fetch product", REASON_UNSPECIFIED);
|
|
}
|
|
|
|
int ret = lua_pcall(L, 3, 0, 0);
|
|
if (ret != 0) {
|
|
dmLogError("Error running callback: %s", lua_tostring(L, -1));
|
|
lua_pop(L, 1);
|
|
}
|
|
|
|
dmScript::Unref(L, LUA_REGISTRYINDEX, g_IAP.m_Callback);
|
|
dmScript::Unref(L, LUA_REGISTRYINDEX, g_IAP.m_Self);
|
|
g_IAP.m_Callback = LUA_NOREF;
|
|
g_IAP.m_Self = LUA_NOREF;
|
|
|
|
assert(top == lua_gettop(L));
|
|
}
|
|
|
|
static void HandlePurchaseResult(const IAPCommand* cmd)
|
|
{
|
|
lua_State* L = g_IAP.m_Listener.m_L;
|
|
int top = lua_gettop(L);
|
|
|
|
if (g_IAP.m_Listener.m_Callback == LUA_NOREF) {
|
|
dmLogError("No callback set");
|
|
return;
|
|
}
|
|
|
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, g_IAP.m_Listener.m_Callback);
|
|
|
|
// Setup self
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, g_IAP.m_Listener.m_Self);
|
|
lua_pushvalue(L, -1);
|
|
dmScript::SetInstance(L);
|
|
|
|
if (!dmScript::IsInstanceValid(L))
|
|
{
|
|
dmLogError("Could not run IAP callback because the instance has been deleted.");
|
|
lua_pop(L, 2);
|
|
assert(top == lua_gettop(L));
|
|
return;
|
|
}
|
|
|
|
if (cmd->m_ResponseCode == BILLING_RESPONSE_RESULT_OK) {
|
|
if (cmd->m_Data1 != 0) {
|
|
dmJson::Document doc;
|
|
dmJson::Result r = dmJson::Parse((const char*) cmd->m_Data1, &doc);
|
|
if (r == dmJson::RESULT_OK && doc.m_NodeCount > 0) {
|
|
char err_str[128];
|
|
if (dmScript::JsonToLua(L, &doc, 0, err_str, sizeof(err_str)) < 0) {
|
|
dmLogError("Failed converting purchase JSON result to Lua; %s", err_str);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to convert purchase response JSON to Lua", REASON_UNSPECIFIED);
|
|
} else {
|
|
lua_pushnil(L);
|
|
}
|
|
} else {
|
|
dmLogError("Failed to parse purchase response (%d)", r);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to parse purchase response", REASON_UNSPECIFIED);
|
|
}
|
|
dmJson::Free(&doc);
|
|
} else {
|
|
dmLogError("IAP error, purchase response was null");
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "purchase response was null", REASON_UNSPECIFIED);
|
|
}
|
|
} else if (cmd->m_ResponseCode == BILLING_RESPONSE_RESULT_USER_CANCELED) {
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "user canceled purchase", REASON_USER_CANCELED);
|
|
} else {
|
|
dmLogError("IAP error %d", cmd->m_ResponseCode);
|
|
lua_pushnil(L);
|
|
IAP_PushError(L, "failed to buy product", REASON_UNSPECIFIED);
|
|
}
|
|
|
|
int ret = lua_pcall(L, 3, 0, 0);
|
|
if (ret != 0) {
|
|
dmLogError("Error running callback: %s", lua_tostring(L, -1));
|
|
lua_pop(L, 1);
|
|
}
|
|
|
|
assert(top == lua_gettop(L));
|
|
}
|
|
|
|
static dmExtension::Result InitializeIAP(dmExtension::Params* params)
|
|
{
|
|
// TODO: Life-cycle managaemnt is *budget*. No notion of "static initalization"
|
|
// Extend extension functionality with per system initalization?
|
|
if (g_IAP.m_InitCount == 0) {
|
|
g_IAP.m_CommandsQueue.SetCapacity(2);
|
|
g_IAP.m_Mutex = dmMutex::New();
|
|
|
|
g_IAP.m_autoFinishTransactions = dmConfigFile::GetInt(params->m_ConfigFile, "iap.auto_finish_transactions", 1) == 1;
|
|
|
|
JNIEnv* env = Attach();
|
|
|
|
jclass activity_class = env->FindClass("android/app/NativeActivity");
|
|
jmethodID get_class_loader = env->GetMethodID(activity_class,"getClassLoader", "()Ljava/lang/ClassLoader;");
|
|
jobject cls = env->CallObjectMethod(dmGraphics::GetNativeAndroidActivity(), get_class_loader);
|
|
jclass class_loader = env->FindClass("java/lang/ClassLoader");
|
|
jmethodID find_class = env->GetMethodID(class_loader, "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
|
|
|
|
const char* provider = dmConfigFile::GetString(params->m_ConfigFile, "android.iap_provider", "GooglePlay");
|
|
const char* class_name = "com.defold.iap.IapGooglePlay";
|
|
|
|
g_IAP.m_ProviderId = PROVIDER_ID_GOOGLE;
|
|
if (!strcmp(provider, "Amazon")) {
|
|
g_IAP.m_ProviderId = PROVIDER_ID_AMAZON;
|
|
class_name = "com.defold.iap.IapAmazon";
|
|
}
|
|
else if (strcmp(provider, "GooglePlay")) {
|
|
dmLogWarning("Unknown IAP provider name [%s], defaulting to GooglePlay", provider);
|
|
}
|
|
|
|
jstring str_class_name = env->NewStringUTF(class_name);
|
|
|
|
jclass iap_class = (jclass)env->CallObjectMethod(cls, find_class, str_class_name);
|
|
env->DeleteLocalRef(str_class_name);
|
|
|
|
str_class_name = env->NewStringUTF("com.defold.iap.IapJNI");
|
|
jclass iap_jni_class = (jclass)env->CallObjectMethod(cls, find_class, str_class_name);
|
|
env->DeleteLocalRef(str_class_name);
|
|
|
|
g_IAP.m_List = env->GetMethodID(iap_class, "listItems", "(Ljava/lang/String;Lcom/defold/iap/IListProductsListener;)V");
|
|
g_IAP.m_Buy = env->GetMethodID(iap_class, "buy", "(Ljava/lang/String;Lcom/defold/iap/IPurchaseListener;)V");
|
|
g_IAP.m_Restore = env->GetMethodID(iap_class, "restore", "(Lcom/defold/iap/IPurchaseListener;)V");
|
|
g_IAP.m_Stop = env->GetMethodID(iap_class, "stop", "()V");
|
|
g_IAP.m_ProcessPendingConsumables = env->GetMethodID(iap_class, "processPendingConsumables", "(Lcom/defold/iap/IPurchaseListener;)V");
|
|
g_IAP.m_FinishTransaction = env->GetMethodID(iap_class, "finishTransaction", "(Ljava/lang/String;Lcom/defold/iap/IPurchaseListener;)V");
|
|
|
|
jmethodID jni_constructor = env->GetMethodID(iap_class, "<init>", "(Landroid/app/Activity;Z)V");
|
|
g_IAP.m_IAP = env->NewGlobalRef(env->NewObject(iap_class, jni_constructor, dmGraphics::GetNativeAndroidActivity(), g_IAP.m_autoFinishTransactions));
|
|
|
|
jni_constructor = env->GetMethodID(iap_jni_class, "<init>", "()V");
|
|
g_IAP.m_IAPJNI = env->NewGlobalRef(env->NewObject(iap_jni_class, jni_constructor));
|
|
|
|
Detach();
|
|
}
|
|
g_IAP.m_InitCount++;
|
|
|
|
lua_State*L = params->m_L;
|
|
int top = lua_gettop(L);
|
|
luaL_register(L, LIB_NAME, IAP_methods);
|
|
|
|
IAP_PushConstants(L);
|
|
|
|
lua_pop(L, 1);
|
|
assert(top == lua_gettop(L));
|
|
|
|
return dmExtension::RESULT_OK;
|
|
}
|
|
|
|
static dmExtension::Result UpdateIAP(dmExtension::Params* params)
|
|
{
|
|
if (g_IAP.m_CommandsQueue.Empty())
|
|
{
|
|
return dmExtension::RESULT_OK;
|
|
}
|
|
|
|
DM_MUTEX_SCOPED_LOCK(g_IAP.m_Mutex);
|
|
|
|
for(uint32_t i = 0; i != g_IAP.m_CommandsQueue.Size(); ++i)
|
|
{
|
|
IAPCommand& cmd = g_IAP.m_CommandsQueue[i];
|
|
switch (cmd.m_Command)
|
|
{
|
|
case CMD_PRODUCT_RESULT:
|
|
HandleProductResult(&cmd);
|
|
break;
|
|
case CMD_PURCHASE_RESULT:
|
|
HandlePurchaseResult(&cmd);
|
|
break;
|
|
|
|
default:
|
|
assert(false);
|
|
}
|
|
|
|
if (cmd.m_Data1) {
|
|
free(cmd.m_Data1);
|
|
}
|
|
}
|
|
g_IAP.m_CommandsQueue.SetSize(0);
|
|
return dmExtension::RESULT_OK;
|
|
}
|
|
|
|
static dmExtension::Result FinalizeIAP(dmExtension::Params* params)
|
|
{
|
|
dmMutex::Delete(g_IAP.m_Mutex);
|
|
--g_IAP.m_InitCount;
|
|
|
|
if (params->m_L == g_IAP.m_Listener.m_L && g_IAP.m_Listener.m_Callback != LUA_NOREF) {
|
|
dmScript::Unref(g_IAP.m_Listener.m_L, LUA_REGISTRYINDEX, g_IAP.m_Listener.m_Callback);
|
|
dmScript::Unref(g_IAP.m_Listener.m_L, LUA_REGISTRYINDEX, g_IAP.m_Listener.m_Self);
|
|
g_IAP.m_Listener.m_L = 0;
|
|
g_IAP.m_Listener.m_Callback = LUA_NOREF;
|
|
g_IAP.m_Listener.m_Self = LUA_NOREF;
|
|
}
|
|
|
|
if (g_IAP.m_InitCount == 0) {
|
|
JNIEnv* env = Attach();
|
|
env->CallVoidMethod(g_IAP.m_IAP, g_IAP.m_Stop);
|
|
env->DeleteGlobalRef(g_IAP.m_IAP);
|
|
env->DeleteGlobalRef(g_IAP.m_IAPJNI);
|
|
Detach();
|
|
g_IAP.m_IAP = NULL;
|
|
}
|
|
return dmExtension::RESULT_OK;
|
|
}
|
|
|
|
DM_DECLARE_EXTENSION(IAPExt, "IAP", 0, 0, InitializeIAP, UpdateIAP, 0, FinalizeIAP)
|
|
|
|
#endif //DM_PLATFORM_ANDROID
|
|
|