diff --git a/plugin/package.json b/plugin/package.json index ffcb008..bf3b166 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-qonversion", - "version": "6.1.2", + "version": "6.1.3", "description": "Qonversion Cordova Plugin", "cordova": { "id": "cordova-plugin-qonversion", diff --git a/plugin/plugin.xml b/plugin/plugin.xml index c31f812..a1e4888 100644 --- a/plugin/plugin.xml +++ b/plugin/plugin.xml @@ -57,7 +57,7 @@ - + @@ -75,7 +75,7 @@ - + diff --git a/plugin/src/plugin/Mapper.ts b/plugin/src/plugin/Mapper.ts index d4309d7..ebb4c7d 100644 --- a/plugin/src/plugin/Mapper.ts +++ b/plugin/src/plugin/Mapper.ts @@ -483,6 +483,8 @@ class Mapper { return UserPropertyKey.PUSH_WOOSH_HW_ID; case "_q_pushwoosh_user_id": return UserPropertyKey.PUSH_WOOSH_USER_ID; + case "_q_tenjin_aiid": + return UserPropertyKey.TENJIN_ANALYTICS_INSTALLATION_ID; } return UserPropertyKey.CUSTOM; diff --git a/plugin/src/plugin/QonversionInternal.ts b/plugin/src/plugin/QonversionInternal.ts index b86b9ee..aa73e82 100644 --- a/plugin/src/plugin/QonversionInternal.ts +++ b/plugin/src/plugin/QonversionInternal.ts @@ -28,7 +28,7 @@ import {PurchaseUpdateModel} from './PurchaseUpdateModel'; import {PurchaseOptions} from "./PurchaseOptions"; import {PurchaseOptionsBuilder} from './PurchaseOptionsBuilder'; -const sdkVersion = "6.1.2"; +const sdkVersion = "6.1.3"; export default class QonversionInternal implements QonversionApi { diff --git a/plugin/src/plugin/enums.ts b/plugin/src/plugin/enums.ts index 4192015..10b10df 100644 --- a/plugin/src/plugin/enums.ts +++ b/plugin/src/plugin/enums.ts @@ -138,6 +138,7 @@ export enum UserPropertyKey { APP_METRICA_USER_PROFILE_ID = "AppMetricaUserProfileId", PUSH_WOOSH_HW_ID = "PushWooshHwId", PUSH_WOOSH_USER_ID = "PushWooshUserId", + TENJIN_ANALYTICS_INSTALLATION_ID = "TenjinAnalyticsInstallationId", CUSTOM = "Custom", }