Skip to content

Commit

Permalink
Release 7.1.0
Browse files Browse the repository at this point in the history
Release 7.1.0
  • Loading branch information
SpertsyanKM committed Jan 30, 2024
2 parents 4328a06 + 2d2919c commit 5da3195
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Editor/QonversionDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<androidPackages>
<androidPackage spec="io.qonversion.sandwich:sandwich:4.0.0" />
<androidPackage spec="io.qonversion.sandwich:sandwich:4.1.1" />
<androidPackage spec="com.fasterxml.jackson.core:jackson-databind:2.11.1" />
<androidPackage spec="org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.61" />
</androidPackages>
<iosPods>
<iosPod name="QonversionSandwich" version="4.0.0" />
<iosPod name="QonversionSandwich" version="4.1.1" />
</iosPods>
</dependencies>
8 changes: 8 additions & 0 deletions Runtime/Scripts/Dto/UserProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ private UserPropertyKey ConvertUserPropertyKey(string stringKey)
return UserPropertyKey.AppSetId;
case "_q_advertising_id":
return UserPropertyKey.AdvertisingId;
case "_q_appmetrica_device_id":
return UserPropertyKey.AppMetricaDeviceId;
case "_q_appmetrica_user_profile_id":
return UserPropertyKey.AppMetricaUserProfileId;
case "_q_pushwoosh_hwid":
return UserPropertyKey.PushWooshHwId;
case "_q_pushwoosh_user_id":
return UserPropertyKey.PushWooshUserId;
}

return UserPropertyKey.Custom;
Expand Down
4 changes: 4 additions & 0 deletions Runtime/Scripts/Dto/UserPropertyKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public enum UserPropertyKey
FirebaseAppInstanceId,
AppSetId, // Android only
AdvertisingId, // iOS only
AppMetricaDeviceId,
AppMetricaUserProfileId,
PushWooshHwId,
PushWooshUserId,
Custom,
}
}
2 changes: 1 addition & 1 deletion Runtime/Scripts/Internal/QonversionInternal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal class QonversionInternal : MonoBehaviour, IQonversion
private const string OnAttachUserMethodName = "OnAttachUser";
private const string OnDetachUserMethodName = "OnDetachUser";

private const string SdkVersion = "7.0.0";
private const string SdkVersion = "7.1.0";
private const string SdkSource = "unity";

private IQonversionWrapper _nativeWrapperInstance;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.qonversion.unity",
"displayName": "Qonversion",
"version": "7.0.0",
"version": "7.1.0",
"unity": "2018.3",
"description": "Empower your mobile app marketing and product decisions with precise subscription data.",
"author": {
Expand Down

0 comments on commit 5da3195

Please sign in to comment.