Skip to content

Commit

Permalink
Merge pull request #99 from qonversion/release/6.1.3
Browse files Browse the repository at this point in the history
Release 6.1.3
  • Loading branch information
SpertsyanKM authored Oct 16, 2024
2 parents 2daf0b1 + 299b472 commit 5df0cf0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<param name="android-package" value="com.qonversion.android.sdk.QonversionPlugin"/>
</feature>
</config-file>
<framework src="io.qonversion.sandwich:sandwich:5.1.4" />
<framework src="io.qonversion.sandwich:sandwich:5.1.6" />
<source-file src="src/android/QonversionPlugin.java" target-dir="src/com/qonversion/android/sdk" />
<source-file src="src/android/EntitiesConverter.java" target-dir="src/com/qonversion/android/sdk" />
<source-file src="src/android/Utils.java" target-dir="src/com/qonversion/android/sdk" />
Expand All @@ -75,7 +75,7 @@
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="QonversionSandwich" spec="5.1.4" />
<pod name="QonversionSandwich" spec="5.1.6" />
</pods>
</podspec>
</platform>
Expand Down
2 changes: 2 additions & 0 deletions plugin/src/plugin/Mapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/plugin/QonversionInternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
1 change: 1 addition & 0 deletions plugin/src/plugin/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}

Expand Down

0 comments on commit 5df0cf0

Please sign in to comment.